
    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_cc74fc1cf4fbc59a2d91d856.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.713000;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_d20b42f8800a91a24bc3a8a5.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_74fda3c625cefc9ae8f748ab.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.906000;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_ee401f950dcf0e0ee2788b86.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.779000;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_256146414d7bb093c513f296.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_e13aade0315a9a89f715e62e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_86e3af3ec46a5c1ee68fb6d9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.712000;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_80fb6fccbc6c44ccd809c7ed.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.697000;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_5f29115224544d04c75ce9eb.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.697000;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_45519b02efa826f3a9496e04.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.315000;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_94fdc23c3770dc5e0b82bcec.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.690918;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_4c2175be51b314d636ae837e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.692871;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_19f18df9d6f1611cba5e1506.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.893000;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_71988963f5d346014e42a898.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.687500;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_c7384e7afab6c38f17a781e5.woff2')format("woff");}.fff{font-family:fff;line-height:0.887000;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_efed82b3869a085f0cfa446f.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_f5accc414450d7b751979ee7.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.025000;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_7eed21cf30cc6498a4adcde4.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.400000;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_43bcd48821d4214c84bf6606.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_ac8d840e7504cd0c8eda16c3.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.678000;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_781ec7660149da269cc3f1cc.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_02763102e01bad7f4165c0dc.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.678223;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_818ddc83a1cc176cf6064d91.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.687500;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_a7008f19422c1fc72b2e3773.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.680176;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);}
.v10{vertical-align:-62.766000px;}
.v11{vertical-align:-44.838000px;}
.va{vertical-align:-33.648000px;}
.v9{vertical-align:-24.684000px;}
.v2{vertical-align:-22.854000px;}
.ve{vertical-align:-21.690000px;}
.v14{vertical-align:-17.934000px;}
.v3{vertical-align:-8.964000px;}
.v6{vertical-align:-5.982000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:16.662000px;}
.vb{vertical-align:21.690000px;}
.v1{vertical-align:23.754000px;}
.v7{vertical-align:31.050000px;}
.vd{vertical-align:38.352000px;}
.v4{vertical-align:40.440000px;}
.v13{vertical-align:44.832000px;}
.vc{vertical-align:47.712000px;}
.vf{vertical-align:56.790000px;}
.v12{vertical-align:72.054000px;}
.v5{vertical-align:97.794000px;}
.lsd{letter-spacing:-4.302000px;}
.lsc{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.001127px;}
.ls4{letter-spacing:0.001536px;}
.ls3{letter-spacing:0.003342px;}
.ls17{letter-spacing:0.009794px;}
.ls4f{letter-spacing:0.687960px;}
.ls20{letter-spacing:1.556930px;}
.ls24{letter-spacing:1.574930px;}
.ls33{letter-spacing:1.586930px;}
.ls40{letter-spacing:1.593317px;}
.ls2f{letter-spacing:1.598930px;}
.ls36{letter-spacing:1.604930px;}
.ls28{letter-spacing:1.607266px;}
.ls21{letter-spacing:1.610930px;}
.ls2b{letter-spacing:1.616930px;}
.ls1a{letter-spacing:1.625266px;}
.ls3e{letter-spacing:1.625420px;}
.ls27{letter-spacing:2.180223px;}
.ls4d{letter-spacing:2.371872px;}
.ls4e{letter-spacing:2.374020px;}
.ls50{letter-spacing:2.410080px;}
.ls38{letter-spacing:2.426952px;}
.ls2{letter-spacing:2.483568px;}
.ls7{letter-spacing:2.949572px;}
.ls9{letter-spacing:2.957065px;}
.ls12{letter-spacing:2.961432px;}
.ls14{letter-spacing:2.961642px;}
.ls15{letter-spacing:2.962074px;}
.ls13{letter-spacing:2.962284px;}
.ls19{letter-spacing:2.982655px;}
.ls44{letter-spacing:2.983842px;}
.ls6{letter-spacing:2.985234px;}
.ls8{letter-spacing:2.985572px;}
.ls29{letter-spacing:2.985806px;}
.lsb{letter-spacing:2.987065px;}
.ls1b{letter-spacing:2.988655px;}
.ls53{letter-spacing:2.988900px;}
.ls5{letter-spacing:2.991234px;}
.ls34{letter-spacing:2.991806px;}
.ls11{letter-spacing:3.011568px;}
.ls4c{letter-spacing:3.012708px;}
.ls16{letter-spacing:3.013926px;}
.ls1d{letter-spacing:4.114118px;}
.ls45{letter-spacing:4.662684px;}
.ls3a{letter-spacing:5.408341px;}
.ls32{letter-spacing:7.540672px;}
.ls43{letter-spacing:8.847144px;}
.ls42{letter-spacing:13.270716px;}
.ls26{letter-spacing:13.282672px;}
.ls52{letter-spacing:15.721614px;}
.ls39{letter-spacing:15.943262px;}
.ls25{letter-spacing:16.275806px;}
.ls2d{letter-spacing:16.490164px;}
.ls3f{letter-spacing:16.618284px;}
.ls23{letter-spacing:16.630672px;}
.ls3b{letter-spacing:17.131672px;}
.ls2e{letter-spacing:18.680223px;}
.ls51{letter-spacing:18.770292px;}
.ls2c{letter-spacing:19.491806px;}
.lsf{letter-spacing:20.878224px;}
.ls37{letter-spacing:22.600672px;}
.ls1{letter-spacing:22.934113px;}
.ls18{letter-spacing:23.088655px;}
.ls35{letter-spacing:23.910130px;}
.ls1f{letter-spacing:24.496118px;}
.ls48{letter-spacing:25.188655px;}
.ls47{letter-spacing:26.780544px;}
.ls10{letter-spacing:35.850707px;}
.ls0{letter-spacing:35.856707px;}
.lse{letter-spacing:35.866800px;}
.ls4a{letter-spacing:36.763470px;}
.ls4b{letter-spacing:38.018808px;}
.ls1c{letter-spacing:71.281672px;}
.ls3c{letter-spacing:103.620655px;}
.ls31{letter-spacing:111.150655px;}
.ls41{letter-spacing:116.904655px;}
.ls22{letter-spacing:120.228655px;}
.ls30{letter-spacing:121.440655px;}
.ls49{letter-spacing:124.542655px;}
.ls1e{letter-spacing:255.945136px;}
.ls3d{letter-spacing:261.887418px;}
.ls46{letter-spacing:308.036034px;}
.ls2a{letter-spacing:321.070007px;}
.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;}
}
.wsc4{word-spacing:-59.778000px;}
.wsc6{word-spacing:-47.656132px;}
.wsb9{word-spacing:-38.939389px;}
.ws50{word-spacing:-35.865000px;}
.wsc9{word-spacing:-29.016241px;}
.wsbc{word-spacing:-28.956463px;}
.ws51{word-spacing:-16.438500px;}
.ws41{word-spacing:-14.944500px;}
.ws53{word-spacing:-13.449000px;}
.ws1a{word-spacing:-11.955000px;}
.wsf0{word-spacing:-9.564000px;}
.wsaf{word-spacing:-1.135782px;}
.ws11c{word-spacing:-1.016226px;}
.ws10c{word-spacing:-0.836892px;}
.ws8b{word-spacing:-0.836713px;}
.wsf9{word-spacing:-0.777114px;}
.wse9{word-spacing:-0.717336px;}
.ws9d{word-spacing:-0.657319px;}
.wsa4{word-spacing:-0.537942px;}
.ws128{word-spacing:-0.418506px;}
.ws127{word-spacing:-0.418446px;}
.ws2c{word-spacing:-0.299069px;}
.ws94{word-spacing:-0.298890px;}
.ws182{word-spacing:-0.191519px;}
.ws181{word-spacing:-0.143556px;}
.wsab{word-spacing:-0.119735px;}
.ws118{word-spacing:-0.119616px;}
.wsc7{word-spacing:-0.059778px;}
.ws0{word-spacing:-0.053796px;}
.ws52{word-spacing:-0.047820px;}
.wsbb{word-spacing:-0.041844px;}
.ws54{word-spacing:0.000000px;}
.wsd1{word-spacing:0.030000px;}
.ws40{word-spacing:0.119676px;}
.ws3c{word-spacing:0.179095px;}
.ws137{word-spacing:0.239243px;}
.ws15e{word-spacing:0.286681px;}
.wsf8{word-spacing:0.299129px;}
.ws2a{word-spacing:0.418506px;}
.ws142{word-spacing:0.574031px;}
.ws9c{word-spacing:0.597900px;}
.ws173{word-spacing:0.621469px;}
.ws4a{word-spacing:0.657319px;}
.ws102{word-spacing:0.776755px;}
.ws101{word-spacing:0.777114px;}
.ws9f{word-spacing:0.777353px;}
.ws5c{word-spacing:0.896670px;}
.wsf6{word-spacing:0.956149px;}
.ws8e{word-spacing:0.956448px;}
.ws105{word-spacing:1.016166px;}
.ws180{word-spacing:1.052231px;}
.ws133{word-spacing:1.076004px;}
.ws90{word-spacing:1.135782px;}
.ws178{word-spacing:1.195643px;}
.ws22{word-spacing:1.254920px;}
.wse5{word-spacing:1.314937px;}
.wsd5{word-spacing:1.315116px;}
.ws12b{word-spacing:1.374894px;}
.ws143{word-spacing:1.387067px;}
.ws115{word-spacing:1.494330px;}
.wsbf{word-spacing:1.545846px;}
.wsc0{word-spacing:1.552068px;}
.ws27{word-spacing:1.554288px;}
.ws9b{word-spacing:1.554348px;}
.ws3{word-spacing:1.667407px;}
.ws11{word-spacing:1.721418px;}
.ws99{word-spacing:1.733562px;}
.ws9a{word-spacing:1.733741px;}
.ws177{word-spacing:1.865219px;}
.ws43{word-spacing:1.972495px;}
.wsd3{word-spacing:1.972554px;}
.ws16f{word-spacing:2.008631px;}
.wse0{word-spacing:2.032452px;}
.ws13a{word-spacing:2.056021px;}
.ws11f{word-spacing:2.091991px;}
.wse8{word-spacing:2.152008px;}
.ws11e{word-spacing:2.211786px;}
.wsa8{word-spacing:2.271385px;}
.wsc8{word-spacing:2.331282px;}
.wsdf{word-spacing:2.331342px;}
.ws11b{word-spacing:2.391419px;}
.ws100{word-spacing:2.510676px;}
.ws12a{word-spacing:2.749788px;}
.wsc3{word-spacing:2.860135px;}
.wsc2{word-spacing:2.869404px;}
.ws144{word-spacing:2.917020px;}
.ws47{word-spacing:2.988900px;}
.ws72{word-spacing:2.989020px;}
.ws113{word-spacing:3.048678px;}
.ws6d{word-spacing:3.168234px;}
.ws4e{word-spacing:3.168294px;}
.ws5b{word-spacing:3.228012px;}
.ws87{word-spacing:3.347209px;}
.ws2f{word-spacing:3.526484px;}
.ws10{word-spacing:3.604171px;}
.ws62{word-spacing:3.646458px;}
.ws119{word-spacing:3.706236px;}
.ws42{word-spacing:3.765894px;}
.wsd0{word-spacing:3.825912px;}
.wsa7{word-spacing:3.885570px;}
.ws15f{word-spacing:3.921431px;}
.ws93{word-spacing:3.944870px;}
.ws2{word-spacing:4.034969px;}
.ws156{word-spacing:4.160197px;}
.ws155{word-spacing:4.256219px;}
.ws179{word-spacing:4.303609px;}
.ws17d{word-spacing:4.303800px;}
.ws175{word-spacing:4.351620px;}
.ws9{word-spacing:4.357799px;}
.wsb0{word-spacing:4.363495px;}
.ws59{word-spacing:4.363674px;}
.ws106{word-spacing:4.363794px;}
.wsb{word-spacing:4.411218px;}
.ws4c{word-spacing:4.423512px;}
.wsd9{word-spacing:4.483350px;}
.ws69{word-spacing:4.543128px;}
.ws21{word-spacing:4.602906px;}
.ws98{word-spacing:4.603085px;}
.ws147{word-spacing:4.638397px;}
.ws146{word-spacing:4.686408px;}
.ws71{word-spacing:4.722462px;}
.wsee{word-spacing:4.734029px;}
.wsef{word-spacing:4.738147px;}
.wsfe{word-spacing:4.781809px;}
.wsc1{word-spacing:4.782000px;}
.wsed{word-spacing:4.782159px;}
.wsec{word-spacing:4.782383px;}
.ws14f{word-spacing:4.785312px;}
.wsc{word-spacing:4.841371px;}
.ws44{word-spacing:4.901676px;}
.wsd2{word-spacing:4.901796px;}
.ws66{word-spacing:4.901916px;}
.wse7{word-spacing:4.961275px;}
.ws73{word-spacing:4.961574px;}
.ws13d{word-spacing:5.116597px;}
.wsb6{word-spacing:5.139426px;}
.wsb7{word-spacing:5.140490px;}
.wsb8{word-spacing:5.140729px;}
.wse3{word-spacing:5.200686px;}
.ws16b{word-spacing:5.260009px;}
.ws38{word-spacing:5.319883px;}
.ws124{word-spacing:5.320122px;}
.ws17a{word-spacing:5.403421px;}
.ws17b{word-spacing:5.403995px;}
.wsbd{word-spacing:5.433846px;}
.wsbe{word-spacing:5.439499px;}
.ws61{word-spacing:5.559354px;}
.ws136{word-spacing:5.644428px;}
.ws4b{word-spacing:5.678731px;}
.ws1b{word-spacing:5.858124px;}
.ws12f{word-spacing:5.858304px;}
.ws121{word-spacing:5.914741px;}
.ws48{word-spacing:5.916216px;}
.wsb5{word-spacing:5.917825px;}
.ws85{word-spacing:5.918022px;}
.wsd6{word-spacing:5.918622px;}
.ws46{word-spacing:5.919169px;}
.wsb4{word-spacing:5.929202px;}
.ws17f{word-spacing:5.929584px;}
.wscd{word-spacing:5.965854px;}
.wsb3{word-spacing:5.972520px;}
.wsa2{word-spacing:5.977283px;}
.ws2e{word-spacing:5.977501px;}
.ws74{word-spacing:5.977740px;}
.ws58{word-spacing:5.977800px;}
.ws3b{word-spacing:5.978099px;}
.wsa5{word-spacing:5.978338px;}
.wsa3{word-spacing:5.979539px;}
.ws31{word-spacing:6.037518px;}
.ws13{word-spacing:6.132583px;}
.ws3a{word-spacing:6.156895px;}
.wsdc{word-spacing:6.157134px;}
.ws15c{word-spacing:6.264372px;}
.ws176{word-spacing:6.312383px;}
.ws10d{word-spacing:6.336468px;}
.wsd{word-spacing:6.347390px;}
.ws16d{word-spacing:6.359773px;}
.ws8{word-spacing:6.454767px;}
.ws145{word-spacing:6.455796px;}
.ws17e{word-spacing:6.503568px;}
.ws57{word-spacing:6.618000px;}
.ws23{word-spacing:6.695076px;}
.ws18{word-spacing:6.724177px;}
.ws15{word-spacing:6.724769px;}
.wsff{word-spacing:6.814752px;}
.ws12c{word-spacing:6.874470px;}
.ws134{word-spacing:6.933996px;}
.ws7f{word-spacing:6.934188px;}
.wsfd{word-spacing:6.994026px;}
.ws7a{word-spacing:6.994205px;}
.ws129{word-spacing:7.053804px;}
.ws6a{word-spacing:7.113582px;}
.ws91{word-spacing:7.173599px;}
.ws10a{word-spacing:7.232959px;}
.ws32{word-spacing:7.292677px;}
.ws26{word-spacing:7.352694px;}
.ws16a{word-spacing:7.364184px;}
.ws174{word-spacing:7.460159px;}
.ws8c{word-spacing:7.472250px;}
.ws3f{word-spacing:7.532088px;}
.ws132{word-spacing:7.591806px;}
.wse2{word-spacing:7.651584px;}
.ws160{word-spacing:7.746362px;}
.ws162{word-spacing:7.746983px;}
.ws29{word-spacing:7.771499px;}
.ws161{word-spacing:7.794947px;}
.ws92{word-spacing:7.890636px;}
.ws86{word-spacing:7.950474px;}
.ws17{word-spacing:8.069400px;}
.ws10e{word-spacing:8.070030px;}
.ws56{word-spacing:8.088000px;}
.ws13b{word-spacing:8.129783px;}
.wsd7{word-spacing:8.249364px;}
.wsa0{word-spacing:8.249424px;}
.ws14e{word-spacing:8.368548px;}
.ws80{word-spacing:8.368920px;}
.ws30{word-spacing:8.428519px;}
.wsde{word-spacing:8.428698px;}
.ws141{word-spacing:8.463949px;}
.ws104{word-spacing:8.488476px;}
.wsdd{word-spacing:8.548254px;}
.wsda{word-spacing:8.608032px;}
.ws126{word-spacing:8.727648px;}
.ws10f{word-spacing:8.787366px;}
.ws171{word-spacing:8.798737px;}
.ws4f{word-spacing:8.847323px;}
.ws169{word-spacing:8.894759px;}
.ws2d{word-spacing:8.907281px;}
.ws13e{word-spacing:9.085561px;}
.ws13f{word-spacing:9.086135px;}
.ws16e{word-spacing:9.133572px;}
.ws114{word-spacing:9.205812px;}
.wscf{word-spacing:9.385146px;}
.ws125{word-spacing:9.385266px;}
.ws16c{word-spacing:9.468360px;}
.ws33{word-spacing:9.504284px;}
.ws110{word-spacing:9.624258px;}
.wsca{word-spacing:9.683976px;}
.wscb{word-spacing:9.684335px;}
.ws12{word-spacing:9.790764px;}
.ws34{word-spacing:9.863131px;}
.ws15b{word-spacing:9.994523px;}
.ws1{word-spacing:10.006217px;}
.ws8d{word-spacing:10.221679px;}
.ws117{word-spacing:10.281696px;}
.ws12e{word-spacing:10.281816px;}
.wsdb{word-spacing:10.341594px;}
.ws135{word-spacing:10.424760px;}
.ws6e{word-spacing:10.461150px;}
.ws13c{word-spacing:10.520161px;}
.ws14b{word-spacing:10.520735px;}
.ws76{word-spacing:10.521107px;}
.wsa9{word-spacing:10.580706px;}
.ws5a{word-spacing:10.640484px;}
.ws60{word-spacing:10.640544px;}
.wsad{word-spacing:10.640723px;}
.wsd4{word-spacing:10.700262px;}
.ws130{word-spacing:10.879596px;}
.ws97{word-spacing:10.939314px;}
.ws151{word-spacing:11.046324px;}
.wsd8{word-spacing:11.058930px;}
.wsf7{word-spacing:11.178486px;}
.ws122{word-spacing:11.178725px;}
.ws65{word-spacing:11.238264px;}
.ws6c{word-spacing:11.357581px;}
.ws8f{word-spacing:11.417538px;}
.ws1c{word-spacing:11.417718px;}
.ws158{word-spacing:11.477135px;}
.ws183{word-spacing:11.572536px;}
.ws77{word-spacing:11.596932px;}
.ws9e{word-spacing:11.656949px;}
.ws83{word-spacing:11.716368px;}
.ws6{word-spacing:11.835012px;}
.ws28{word-spacing:11.895882px;}
.ws17c{word-spacing:11.955000px;}
.ws120{word-spacing:11.955600px;}
.wscc{word-spacing:12.075156px;}
.ws148{word-spacing:12.194100px;}
.ws6f{word-spacing:12.194592px;}
.ws7c{word-spacing:12.314268px;}
.ws78{word-spacing:12.314567px;}
.ws15d{word-spacing:12.337512px;}
.wse{word-spacing:12.373188px;}
.ws14c{word-spacing:12.480924px;}
.ws6b{word-spacing:12.553380px;}
.ws1e{word-spacing:12.732893px;}
.ws3e{word-spacing:12.792313px;}
.wsaa{word-spacing:12.792492px;}
.ws7{word-spacing:12.803394px;}
.ws163{word-spacing:12.815712px;}
.ws7b{word-spacing:13.091023px;}
.ws63{word-spacing:13.151160px;}
.wse6{word-spacing:13.270716px;}
.ws139{word-spacing:13.485288px;}
.ws138{word-spacing:13.487172px;}
.wsb1{word-spacing:13.509828px;}
.ws35{word-spacing:13.689282px;}
.ws25{word-spacing:13.748701px;}
.ws116{word-spacing:13.808658px;}
.ws5d{word-spacing:13.868496px;}
.ws2b{word-spacing:13.868735px;}
.ws172{word-spacing:13.963488px;}
.ws88{word-spacing:13.988052px;}
.ws3d{word-spacing:14.048129px;}
.wsea{word-spacing:14.227164px;}
.ws170{word-spacing:14.298276px;}
.ws103{word-spacing:14.346720px;}
.wsac{word-spacing:14.406498px;}
.ws131{word-spacing:14.466276px;}
.ws84{word-spacing:14.526293px;}
.ws107{word-spacing:14.585832px;}
.ws140{word-spacing:14.680501px;}
.ws168{word-spacing:14.728512px;}
.ws1f{word-spacing:14.884483px;}
.wse1{word-spacing:14.944500px;}
.wsf4{word-spacing:15.123834px;}
.ws157{word-spacing:15.158701px;}
.ws14{word-spacing:15.278387px;}
.ws112{word-spacing:15.422724px;}
.ws14d{word-spacing:15.589463px;}
.ws36{word-spacing:15.602118px;}
.wseb{word-spacing:15.840931px;}
.ws152{word-spacing:15.876288px;}
.ws5e{word-spacing:16.379172px;}
.ws149{word-spacing:16.449889px;}
.ws14a{word-spacing:16.450463px;}
.wsf5{word-spacing:16.498728px;}
.ws153{word-spacing:16.545863px;}
.wsba{word-spacing:16.558506px;}
.ws70{word-spacing:16.678062px;}
.ws154{word-spacing:16.784677px;}
.ws67{word-spacing:16.797618px;}
.ws7d{word-spacing:16.857396px;}
.wsae{word-spacing:16.917174px;}
.wse4{word-spacing:17.036730px;}
.ws1d{word-spacing:17.216124px;}
.ws39{word-spacing:17.275483px;}
.ws5{word-spacing:17.430012px;}
.wsce{word-spacing:17.514954px;}
.ws15a{word-spacing:17.645676px;}
.ws55{word-spacing:17.646000px;}
.ws159{word-spacing:17.648339px;}
.ws19{word-spacing:17.933101px;}
.wsa1{word-spacing:17.933221px;}
.wsb2{word-spacing:17.933400px;}
.ws45{word-spacing:17.933699px;}
.ws79{word-spacing:17.993178px;}
.wsa{word-spacing:18.021606px;}
.ws24{word-spacing:18.053135px;}
.ws150{word-spacing:18.075864px;}
.ws10b{word-spacing:18.292008px;}
.wsfa{word-spacing:18.650856px;}
.ws37{word-spacing:18.710096px;}
.wsa6{word-spacing:18.710514px;}
.wsfc{word-spacing:18.710873px;}
.ws75{word-spacing:18.770292px;}
.ws4d{word-spacing:19.367713px;}
.wsf3{word-spacing:19.487628px;}
.wsc5{word-spacing:19.546616px;}
.ws82{word-spacing:19.846117px;}
.ws89{word-spacing:19.965852px;}
.ws111{word-spacing:20.145186px;}
.ws164{word-spacing:20.228003px;}
.ws64{word-spacing:20.324520px;}
.wsf{word-spacing:20.603976px;}
.ws123{word-spacing:20.683128px;}
.ws11a{word-spacing:20.802505px;}
.ws49{word-spacing:20.862283px;}
.ws12d{word-spacing:21.221190px;}
.ws109{word-spacing:21.221369px;}
.wsfb{word-spacing:21.340746px;}
.ws16{word-spacing:21.464604px;}
.ws68{word-spacing:21.520080px;}
.ws7e{word-spacing:21.818970px;}
.ws81{word-spacing:21.939004px;}
.ws11d{word-spacing:22.057783px;}
.ws165{word-spacing:22.140803px;}
.ws166{word-spacing:22.188193px;}
.ws167{word-spacing:22.284216px;}
.ws4{word-spacing:22.379405px;}
.ws108{word-spacing:22.475990px;}
.ws20{word-spacing:23.074487px;}
.ws8a{word-spacing:23.672088px;}
.ws5f{word-spacing:24.568758px;}
.ws95{word-spacing:27.019357px;}
.ws96{word-spacing:36.942804px;}
.wsf1{word-spacing:76.368540px;}
.wsf2{word-spacing:89.279940px;}
._11{margin-left:-42.143490px;}
._d{margin-left:-8.070030px;}
._7{margin-left:-6.287842px;}
._e{margin-left:-5.146601px;}
._0{margin-left:-4.087259px;}
._4{margin-left:-2.901971px;}
._1{margin-left:-1.722709px;}
._8{width:1.148829px;}
._5{width:2.989199px;}
._1c{width:11.524094px;}
._1b{width:13.007279px;}
._6{width:14.346541px;}
._3{width:16.837825px;}
._c{width:21.089586px;}
._a{width:24.557726px;}
._b{width:28.286436px;}
._2{width:29.857210px;}
._10{width:33.473952px;}
._1a{width:38.424889px;}
._f{width:60.097492px;}
._13{width:101.187120px;}
._19{width:161.822880px;}
._17{width:173.777880px;}
._14{width:195.296880px;}
._15{width:244.647072px;}
._18{width:284.121179px;}
._12{width:300.979080px;}
._16{width:305.305439px;}
._9{width:435.000000px;}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:29.886000px;}
.fs7{font-size:35.868000px;}
.fsa{font-size:38.256000px;}
.fs3{font-size:41.844000px;}
.fs2{font-size:47.820000px;}
.fs0{font-size:53.796000px;}
.fs1{font-size:59.778000px;}
.fs8{font-size:60.000000px;}
.fs6{font-size:65.754000px;}
.fs4{font-size:72.000000px;}
.fs5{font-size:143.460000px;}
.y0{bottom:0.000000px;}
.y14b{bottom:41.790000px;}
.yfc{bottom:44.790000px;}
.yb6{bottom:45.448500px;}
.y17d{bottom:46.554000px;}
.y1e4{bottom:56.326500px;}
.y58{bottom:60.895500px;}
.y2c{bottom:113.332500px;}
.y1b9{bottom:126.783000px;}
.y2b{bottom:131.265000px;}
.ye6{bottom:131.266500px;}
.y1b8{bottom:140.232000px;}
.y2a{bottom:149.197500px;}
.yfb{bottom:149.199000px;}
.y1b7{bottom:153.682500px;}
.ye5{bottom:157.756500px;}
.ye4{bottom:161.922000px;}
.y4d{bottom:167.130000px;}
.y29{bottom:167.131500px;}
.y1b6{bottom:180.580500px;}
.y4c{bottom:185.062500px;}
.y28{bottom:185.064000px;}
.y12b{bottom:188.163000px;}
.yb5{bottom:189.640500px;}
.ye3{bottom:193.489500px;}
.y1b5{bottom:194.031000px;}
.y27{bottom:202.996500px;}
.y1b4{bottom:207.480000px;}
.yfa{bottom:207.681000px;}
.y14a{bottom:209.247000px;}
.y12a{bottom:210.987000px;}
.ye2{bottom:211.422000px;}
.yb4{bottom:216.877500px;}
.y26{bottom:220.929000px;}
.yf9{bottom:231.402000px;}
.y1b3{bottom:234.379500px;}
.yb3{bottom:234.811500px;}
.yf8{bottom:235.567500px;}
.ye1{bottom:238.633500px;}
.y25{bottom:238.861500px;}
.y15c{bottom:239.175000px;}
.y129{bottom:239.452500px;}
.y149{bottom:241.015500px;}
.y17c{bottom:241.642500px;}
.ye0{bottom:246.937500px;}
.y1b2{bottom:247.828500px;}
.yb2{bottom:252.744000px;}
.yf7{bottom:254.410500px;}
.y24{bottom:256.350000px;}
.y4b{bottom:256.794000px;}
.y84{bottom:256.795500px;}
.y15b{bottom:257.107500px;}
.ydf{bottom:257.188500px;}
.y128{bottom:257.385000px;}
.y148{bottom:258.948000px;}
.y17b{bottom:259.575000px;}
.y1b1{bottom:261.279000px;}
.yf6{bottom:272.343000px;}
.yb1{bottom:273.244500px;}
.y23{bottom:274.282500px;}
.y1b0{bottom:274.728000px;}
.y15a{bottom:275.040000px;}
.y127{bottom:275.317500px;}
.y83{bottom:275.955000px;}
.y147{bottom:276.880500px;}
.y4a{bottom:279.483000px;}
.yde{bottom:279.736500px;}
.y17a{bottom:282.151500px;}
.y1af{bottom:288.177000px;}
.yb0{bottom:291.178500px;}
.y22{bottom:292.215000px;}
.y159{bottom:292.972500px;}
.y82{bottom:293.887500px;}
.yf5{bottom:296.098500px;}
.y126{bottom:296.349000px;}
.ydd{bottom:297.669000px;}
.yf4{bottom:300.264000px;}
.y146{bottom:301.063500px;}
.y1ae{bottom:301.627500px;}
.y49{bottom:307.570500px;}
.yaf{bottom:309.111000px;}
.y179{bottom:309.783000px;}
.y21{bottom:310.147500px;}
.y158{bottom:310.905000px;}
.y81{bottom:311.820000px;}
.y125{bottom:314.283000px;}
.y1ad{bottom:315.076500px;}
.ydc{bottom:322.386000px;}
.y48{bottom:325.503000px;}
.yae{bottom:327.043500px;}
.y178{bottom:327.717000px;}
.y20{bottom:328.080000px;}
.y1ac{bottom:328.525500px;}
.y157{bottom:328.839000px;}
.yf3{bottom:329.095500px;}
.y80{bottom:329.752500px;}
.y124{bottom:332.215500px;}
.y145{bottom:332.832000px;}
.y1ab{bottom:341.976000px;}
.y47{bottom:343.435500px;}
.yad{bottom:344.976000px;}
.y177{bottom:345.649500px;}
.y1f{bottom:346.014000px;}
.y156{bottom:346.771500px;}
.yf2{bottom:347.028000px;}
.y7f{bottom:347.686500px;}
.ydb{bottom:348.585000px;}
.y123{bottom:350.148000px;}
.y144{bottom:350.764500px;}
.y1aa{bottom:355.425000px;}
.y46{bottom:361.369500px;}
.yac{bottom:362.908500px;}
.y176{bottom:363.582000px;}
.y1e{bottom:363.946500px;}
.y155{bottom:364.704000px;}
.y7e{bottom:365.619000px;}
.y122{bottom:368.080500px;}
.y143{bottom:368.697000px;}
.y1a9{bottom:368.875500px;}
.yf1{bottom:369.645000px;}
.y45{bottom:379.302000px;}
.yab{bottom:380.841000px;}
.y175{bottom:381.514500px;}
.yda{bottom:381.646500px;}
.y1d{bottom:381.879000px;}
.y1a8{bottom:382.324500px;}
.y154{bottom:382.636500px;}
.y7d{bottom:383.551500px;}
.y121{bottom:386.013000px;}
.y142{bottom:387.070500px;}
.yed{bottom:392.829000px;}
.y1a7{bottom:395.773500px;}
.y44{bottom:397.234500px;}
.yaa{bottom:398.775000px;}
.y174{bottom:399.447000px;}
.yd9{bottom:399.580500px;}
.y1c{bottom:399.811500px;}
.y153{bottom:400.569000px;}
.y7c{bottom:401.484000px;}
.y120{bottom:403.945500px;}
.y141{bottom:405.003000px;}
.yf0{bottom:406.521000px;}
.y1a6{bottom:409.224000px;}
.yec{bottom:410.686500px;}
.yef{bottom:411.645000px;}
.y43{bottom:415.167000px;}
.ya9{bottom:416.707500px;}
.y173{bottom:417.315000px;}
.yd8{bottom:417.513000px;}
.y1b{bottom:417.744000px;}
.yee{bottom:420.796500px;}
.y11f{bottom:421.879500px;}
.y1a5{bottom:422.673000px;}
.y140{bottom:422.935500px;}
.y152{bottom:425.083500px;}
.y7b{bottom:428.419500px;}
.y42{bottom:433.099500px;}
.ya8{bottom:434.640000px;}
.y172{bottom:435.249000px;}
.y1a{bottom:435.678000px;}
.y1a4{bottom:436.122000px;}
.yd7{bottom:439.686000px;}
.y11e{bottom:439.812000px;}
.y13f{bottom:440.868000px;}
.yeb{bottom:445.228500px;}
.y1a3{bottom:449.572500px;}
.y41{bottom:451.033500px;}
.ya7{bottom:452.572500px;}
.y171{bottom:453.181500px;}
.y151{bottom:455.758500px;}
.yd6{bottom:457.618500px;}
.y11d{bottom:457.744500px;}
.y19{bottom:457.872000px;}
.yea{bottom:458.995500px;}
.y1a2{bottom:463.021500px;}
.ye9{bottom:463.161000px;}
.y13e{bottom:465.052500px;}
.y7a{bottom:466.872000px;}
.y1e3{bottom:467.505000px;}
.y40{bottom:468.966000px;}
.ya6{bottom:470.505000px;}
.y170{bottom:471.114000px;}
.y150{bottom:473.691000px;}
.yd5{bottom:475.552500px;}
.y11c{bottom:475.677000px;}
.y1a1{bottom:476.472000px;}
.y1e2{bottom:480.954000px;}
.y79{bottom:484.806000px;}
.ye8{bottom:486.540000px;}
.y3f{bottom:486.898500px;}
.y18{bottom:487.377000px;}
.ya5{bottom:488.437500px;}
.y16f{bottom:489.046500px;}
.y1a0{bottom:489.921000px;}
.y14f{bottom:491.623500px;}
.yd4{bottom:493.485000px;}
.y11b{bottom:493.609500px;}
.y1e1{bottom:494.404500px;}
.y13d{bottom:496.819500px;}
.y17{bottom:502.320000px;}
.y78{bottom:502.738500px;}
.y19f{bottom:503.370000px;}
.y3e{bottom:504.831000px;}
.y16e{bottom:506.979000px;}
.y1e0{bottom:507.853500px;}
.ya4{bottom:508.939500px;}
.y14e{bottom:509.556000px;}
.yd3{bottom:511.417500px;}
.y11a{bottom:514.642500px;}
.y13c{bottom:514.752000px;}
.y16{bottom:516.819000px;}
.y19e{bottom:516.820500px;}
.y77{bottom:520.671000px;}
.y1df{bottom:521.304000px;}
.y16d{bottom:524.911500px;}
.y3d{bottom:525.769500px;}
.yd2{bottom:529.350000px;}
.y19d{bottom:530.269500px;}
.ya3{bottom:531.450000px;}
.y15{bottom:531.763500px;}
.y119{bottom:532.575000px;}
.y13b{bottom:532.684500px;}
.y14d{bottom:533.289000px;}
.ye7{bottom:534.618000px;}
.y1de{bottom:534.753000px;}
.y76{bottom:538.603500px;}
.y16c{bottom:542.845500px;}
.y3c{bottom:543.702000px;}
.y19c{bottom:543.718500px;}
.y14{bottom:546.708000px;}
.y1dd{bottom:548.202000px;}
.y13a{bottom:550.618500px;}
.yd1{bottom:551.524500px;}
.y118{bottom:555.399000px;}
.y75{bottom:556.536000px;}
.y19b{bottom:557.169000px;}
.ya2{bottom:558.687000px;}
.y16b{bottom:560.778000px;}
.y3b{bottom:561.634500px;}
.y13{bottom:561.651000px;}
.y1dc{bottom:561.652500px;}
.y139{bottom:568.551000px;}
.y19a{bottom:570.618000px;}
.y1db{bottom:575.101500px;}
.y74{bottom:575.697000px;}
.yd0{bottom:576.240000px;}
.y12{bottom:576.595500px;}
.ya1{bottom:576.619500px;}
.y16a{bottom:578.710500px;}
.y3a{bottom:579.576000px;}
.y14c{bottom:582.439500px;}
.y117{bottom:583.863000px;}
.y199{bottom:584.067000px;}
.y1da{bottom:588.552000px;}
.y138{bottom:589.962000px;}
.y11{bottom:591.540000px;}
.y73{bottom:593.629500px;}
.ya0{bottom:594.552000px;}
.y169{bottom:596.643000px;}
.y39{bottom:597.508500px;}
.y198{bottom:597.517500px;}
.y116{bottom:601.797000px;}
.y1d9{bottom:602.001000px;}
.y10{bottom:606.483000px;}
.y137{bottom:607.894500px;}
.ycf{bottom:609.303000px;}
.y197{bottom:610.966500px;}
.y72{bottom:611.562000px;}
.y9f{bottom:612.486000px;}
.y168{bottom:614.511000px;}
.y38{bottom:615.441000px;}
.y1d8{bottom:615.450000px;}
.y115{bottom:619.729500px;}
.yf{bottom:621.427500px;}
.y136{bottom:625.827000px;}
.yce{bottom:627.235500px;}
.y1d7{bottom:628.900500px;}
.y71{bottom:629.494500px;}
.y9e{bottom:630.418500px;}
.y196{bottom:632.262000px;}
.y167{bottom:632.443500px;}
.y37{bottom:633.373500px;}
.ye{bottom:636.372000px;}
.y114{bottom:637.662000px;}
.y1d6{bottom:642.349500px;}
.y135{bottom:643.761000px;}
.ycd{bottom:645.168000px;}
.y70{bottom:647.427000px;}
.y9d{bottom:648.351000px;}
.y166{bottom:650.377500px;}
.y36{bottom:651.307500px;}
.yd{bottom:651.315000px;}
.y1d5{bottom:655.800000px;}
.y195{bottom:657.592500px;}
.y113{bottom:658.693500px;}
.y134{bottom:661.693500px;}
.ycc{bottom:663.100500px;}
.y6f{bottom:665.361000px;}
.yc{bottom:666.259500px;}
.y9c{bottom:666.283500px;}
.y165{bottom:668.310000px;}
.y35{bottom:669.240000px;}
.y1d4{bottom:669.249000px;}
.y194{bottom:675.525000px;}
.y112{bottom:676.626000px;}
.yb{bottom:681.204000px;}
.y1d3{bottom:682.698000px;}
.y6e{bottom:683.293500px;}
.y9b{bottom:684.216000px;}
.ycb{bottom:685.275000px;}
.y164{bottom:686.242500px;}
.y34{bottom:687.172500px;}
.y193{bottom:693.457500px;}
.y111{bottom:694.560000px;}
.ya{bottom:696.147000px;}
.y1d2{bottom:696.148500px;}
.y6d{bottom:701.226000px;}
.y9a{bottom:702.148500px;}
.yca{bottom:703.207500px;}
.y163{bottom:704.175000px;}
.y33{bottom:705.105000px;}
.y1d1{bottom:709.597500px;}
.y9{bottom:711.091500px;}
.y192{bottom:711.390000px;}
.y110{bottom:712.492500px;}
.y133{bottom:716.518500px;}
.y6c{bottom:719.158500px;}
.y99{bottom:720.082500px;}
.y162{bottom:722.107500px;}
.y32{bottom:723.037500px;}
.y1d0{bottom:723.046500px;}
.y8{bottom:726.034500px;}
.yc9{bottom:727.923000px;}
.y191{bottom:729.322500px;}
.y132{bottom:729.967500px;}
.y10f{bottom:733.524000px;}
.y1cf{bottom:736.497000px;}
.y98{bottom:738.015000px;}
.y161{bottom:740.040000px;}
.y31{bottom:740.971500px;}
.y7{bottom:740.979000px;}
.y131{bottom:743.416500px;}
.y6b{bottom:746.094000px;}
.y190{bottom:747.256500px;}
.y1ce{bottom:749.946000px;}
.y10e{bottom:751.456500px;}
.y6{bottom:755.923500px;}
.y97{bottom:755.947500px;}
.y130{bottom:756.867000px;}
.y160{bottom:757.974000px;}
.y30{bottom:758.904000px;}
.yc8{bottom:760.986000px;}
.y1cd{bottom:763.395000px;}
.y18f{bottom:765.189000px;}
.y10d{bottom:769.390500px;}
.y5{bottom:770.866500px;}
.y15f{bottom:775.842000px;}
.y96{bottom:776.449500px;}
.y2f{bottom:776.844000px;}
.y1cc{bottom:776.845500px;}
.y12f{bottom:778.123500px;}
.yc7{bottom:778.918500px;}
.y18e{bottom:783.121500px;}
.y6a{bottom:784.546500px;}
.y4{bottom:785.811000px;}
.y10c{bottom:787.375500px;}
.y1cb{bottom:790.294500px;}
.y15e{bottom:793.774500px;}
.y2e{bottom:794.776500px;}
.yc6{bottom:796.851000px;}
.y95{bottom:798.958500px;}
.y3{bottom:800.755500px;}
.y18d{bottom:801.054000px;}
.y69{bottom:802.480500px;}
.y1ca{bottom:803.745000px;}
.y10b{bottom:805.308000px;}
.y12e{bottom:808.945500px;}
.y15d{bottom:811.707000px;}
.y2d{bottom:812.710500px;}
.y2{bottom:815.698500px;}
.y1c9{bottom:817.194000px;}
.y18c{bottom:818.986500px;}
.yc5{bottom:819.025500px;}
.y68{bottom:820.413000px;}
.y12d{bottom:822.396000px;}
.y10a{bottom:823.240500px;}
.y94{bottom:826.195500px;}
.y1{bottom:830.643000px;}
.y18b{bottom:836.919000px;}
.yc4{bottom:836.958000px;}
.y67{bottom:838.345500px;}
.y109{bottom:841.173000px;}
.y1c8{bottom:844.093500px;}
.y93{bottom:844.129500px;}
.yc3{bottom:854.890500px;}
.y66{bottom:856.278000px;}
.y1c7{bottom:857.542500px;}
.y108{bottom:859.105500px;}
.y18a{bottom:859.111500px;}
.y12c{bottom:859.335000px;}
.y92{bottom:862.062000px;}
.y1c6{bottom:870.991500px;}
.yc2{bottom:872.823000px;}
.y65{bottom:874.210500px;}
.y107{bottom:877.039500px;}
.y91{bottom:879.994500px;}
.y189{bottom:884.442000px;}
.y57{bottom:887.772000px;}
.yc1{bottom:890.757000px;}
.y64{bottom:892.143000px;}
.y106{bottom:894.972000px;}
.y1c5{bottom:897.891000px;}
.y90{bottom:897.927000px;}
.y188{bottom:902.374500px;}
.y56{bottom:904.167000px;}
.yc0{bottom:908.689500px;}
.y63{bottom:910.077000px;}
.y1c4{bottom:911.341500px;}
.y105{bottom:912.904500px;}
.y8f{bottom:915.859500px;}
.y187{bottom:920.307000px;}
.y55{bottom:920.562000px;}
.y1c3{bottom:924.790500px;}
.ybf{bottom:926.622000px;}
.y62{bottom:929.236500px;}
.y104{bottom:930.837000px;}
.y8e{bottom:933.663000px;}
.y54{bottom:936.957000px;}
.y186{bottom:938.239500px;}
.y61{bottom:947.169000px;}
.ybe{bottom:948.795000px;}
.y8d{bottom:951.595500px;}
.y1c2{bottom:951.690000px;}
.y53{bottom:953.352000px;}
.y103{bottom:953.661000px;}
.y185{bottom:956.172000px;}
.y60{bottom:965.101500px;}
.y1c1{bottom:965.139000px;}
.ybd{bottom:967.321500px;}
.y8c{bottom:969.528000px;}
.y52{bottom:971.581500px;}
.y184{bottom:974.104500px;}
.y102{bottom:976.615500px;}
.y1c0{bottom:978.588000px;}
.y5f{bottom:983.035500px;}
.ybc{bottom:985.254000px;}
.y8b{bottom:987.460500px;}
.y51{bottom:991.554000px;}
.y183{bottom:992.038500px;}
.y5e{bottom:1000.968000px;}
.ybb{bottom:1003.186500px;}
.y101{bottom:1005.079500px;}
.y8a{bottom:1005.393000px;}
.y1bf{bottom:1005.487500px;}
.y182{bottom:1009.971000px;}
.y5d{bottom:1018.900500px;}
.y1be{bottom:1018.938000px;}
.yba{bottom:1021.120500px;}
.y100{bottom:1023.013500px;}
.y89{bottom:1023.325500px;}
.y181{bottom:1027.903500px;}
.y1bd{bottom:1032.387000px;}
.y5c{bottom:1036.833000px;}
.yb9{bottom:1039.053000px;}
.y50{bottom:1039.309500px;}
.yff{bottom:1040.946000px;}
.y88{bottom:1041.259500px;}
.y180{bottom:1045.836000px;}
.y5b{bottom:1054.765500px;}
.yb8{bottom:1056.985500px;}
.yfe{bottom:1058.878500px;}
.y87{bottom:1059.192000px;}
.y1bc{bottom:1059.286500px;}
.y17f{bottom:1063.768500px;}
.y5a{bottom:1072.698000px;}
.y1bb{bottom:1072.735500px;}
.yb7{bottom:1074.918000px;}
.yfd{bottom:1076.811000px;}
.y86{bottom:1077.124500px;}
.y4f{bottom:1081.152000px;}
.y17e{bottom:1081.701000px;}
.y1ba{bottom:1086.184500px;}
.y85{bottom:1099.633500px;}
.y59{bottom:1099.635000px;}
.y4e{bottom:1156.371000px;}
.h9{height:24.246768px;}
.h18{height:29.416332px;}
.he{height:31.383000px;}
.h1d{height:32.804520px;}
.h13{height:32.900160px;}
.h2{height:37.226832px;}
.h1{height:37.603404px;}
.ha{height:40.634766px;}
.hb{height:41.007708px;}
.h3{height:41.127264px;}
.h1c{height:41.366376px;}
.h4{height:42.143490px;}
.hf{height:44.833500px;}
.h16{height:46.327950px;}
.h5{height:52.453125px;}
.h12{height:53.073000px;}
.h8{height:56.080320px;}
.h17{height:56.790000px;}
.h1b{height:57.789264px;}
.h19{height:58.599000px;}
.h1a{height:58.805490px;}
.h10{height:62.433000px;}
.h15{height:69.735000px;}
.h11{height:72.729000px;}
.h14{height:79.095000px;}
.hc{height:85.273500px;}
.hd{height:97.794000px;}
.h7{height:98.700480px;}
.h6{height:100.422000px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:73.446000px;}
.x8{left:75.655500px;}
.x24{left:77.794500px;}
.x30{left:79.423500px;}
.x13{left:86.344500px;}
.x1{left:88.390500px;}
.x31{left:100.834500px;}
.x12{left:103.479000px;}
.x2b{left:136.737000px;}
.xa{left:138.117000px;}
.x14{left:154.852500px;}
.x25{left:157.111500px;}
.x2a{left:158.322000px;}
.x18{left:171.139500px;}
.x19{left:181.839000px;}
.x2e{left:198.573000px;}
.x3{left:203.430000px;}
.x2c{left:207.531000px;}
.x15{left:213.882000px;}
.x2f{left:219.897000px;}
.xb{left:242.488500px;}
.x16{left:243.814500px;}
.x17{left:294.966000px;}
.xc{left:394.563000px;}
.xf{left:396.991500px;}
.x9{left:401.239500px;}
.xd{left:409.264500px;}
.x10{left:415.504500px;}
.xe{left:425.700000px;}
.x4{left:467.967000px;}
.x5{left:482.910000px;}
.x32{left:495.355500px;}
.x6{left:498.000000px;}
.x29{left:509.208000px;}
.x28{left:514.969500px;}
.x27{left:520.045500px;}
.x11{left:527.184000px;}
.x7{left:535.761000px;}
.x26{left:549.501000px;}
.x1d{left:550.867500px;}
.x1a{left:565.599000px;}
.x22{left:573.094500px;}
.x2d{left:589.917000px;}
.x1e{left:611.625000px;}
.x23{left:633.853500px;}
.x20{left:640.495500px;}
.x1b{left:661.875000px;}
.x1f{left:663.615000px;}
.x21{left:727.368000px;}
.x1c{left:768.355500px;}
@media print{
.v10{vertical-align:-55.792000pt;}
.v11{vertical-align:-39.856000pt;}
.va{vertical-align:-29.909333pt;}
.v9{vertical-align:-21.941333pt;}
.v2{vertical-align:-20.314667pt;}
.ve{vertical-align:-19.280000pt;}
.v14{vertical-align:-15.941333pt;}
.v3{vertical-align:-7.968000pt;}
.v6{vertical-align:-5.317333pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:14.810667pt;}
.vb{vertical-align:19.280000pt;}
.v1{vertical-align:21.114667pt;}
.v7{vertical-align:27.600000pt;}
.vd{vertical-align:34.090667pt;}
.v4{vertical-align:35.946667pt;}
.v13{vertical-align:39.850667pt;}
.vc{vertical-align:42.410667pt;}
.vf{vertical-align:50.480000pt;}
.v12{vertical-align:64.048000pt;}
.v5{vertical-align:86.928000pt;}
.lsd{letter-spacing:-3.824000pt;}
.lsc{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.001002pt;}
.ls4{letter-spacing:0.001365pt;}
.ls3{letter-spacing:0.002971pt;}
.ls17{letter-spacing:0.008706pt;}
.ls4f{letter-spacing:0.611520pt;}
.ls20{letter-spacing:1.383938pt;}
.ls24{letter-spacing:1.399938pt;}
.ls33{letter-spacing:1.410604pt;}
.ls40{letter-spacing:1.416282pt;}
.ls2f{letter-spacing:1.421271pt;}
.ls36{letter-spacing:1.426604pt;}
.ls28{letter-spacing:1.428681pt;}
.ls21{letter-spacing:1.431938pt;}
.ls2b{letter-spacing:1.437271pt;}
.ls1a{letter-spacing:1.444681pt;}
.ls3e{letter-spacing:1.444818pt;}
.ls27{letter-spacing:1.937976pt;}
.ls4d{letter-spacing:2.108331pt;}
.ls4e{letter-spacing:2.110240pt;}
.ls50{letter-spacing:2.142293pt;}
.ls38{letter-spacing:2.157291pt;}
.ls2{letter-spacing:2.207616pt;}
.ls7{letter-spacing:2.621842pt;}
.ls9{letter-spacing:2.628502pt;}
.ls12{letter-spacing:2.632384pt;}
.ls14{letter-spacing:2.632571pt;}
.ls15{letter-spacing:2.632955pt;}
.ls13{letter-spacing:2.633141pt;}
.ls19{letter-spacing:2.651249pt;}
.ls44{letter-spacing:2.652304pt;}
.ls6{letter-spacing:2.653541pt;}
.ls8{letter-spacing:2.653842pt;}
.ls29{letter-spacing:2.654050pt;}
.lsb{letter-spacing:2.655169pt;}
.ls1b{letter-spacing:2.656582pt;}
.ls53{letter-spacing:2.656800pt;}
.ls5{letter-spacing:2.658875pt;}
.ls34{letter-spacing:2.659383pt;}
.ls11{letter-spacing:2.676949pt;}
.ls4c{letter-spacing:2.677963pt;}
.ls16{letter-spacing:2.679045pt;}
.ls1d{letter-spacing:3.656994pt;}
.ls45{letter-spacing:4.144608pt;}
.ls3a{letter-spacing:4.807414pt;}
.ls32{letter-spacing:6.702819pt;}
.ls43{letter-spacing:7.864128pt;}
.ls42{letter-spacing:11.796192pt;}
.ls26{letter-spacing:11.806819pt;}
.ls52{letter-spacing:13.974768pt;}
.ls39{letter-spacing:14.171788pt;}
.ls25{letter-spacing:14.467383pt;}
.ls2d{letter-spacing:14.657924pt;}
.ls3f{letter-spacing:14.771808pt;}
.ls23{letter-spacing:14.782819pt;}
.ls3b{letter-spacing:15.228153pt;}
.ls2e{letter-spacing:16.604643pt;}
.ls51{letter-spacing:16.684704pt;}
.ls2c{letter-spacing:17.326050pt;}
.lsf{letter-spacing:18.558421pt;}
.ls37{letter-spacing:20.089486pt;}
.ls1{letter-spacing:20.385879pt;}
.ls18{letter-spacing:20.523249pt;}
.ls35{letter-spacing:21.253449pt;}
.ls1f{letter-spacing:21.774327pt;}
.ls48{letter-spacing:22.389916pt;}
.ls47{letter-spacing:23.804928pt;}
.ls10{letter-spacing:31.867295pt;}
.ls0{letter-spacing:31.872628pt;}
.lse{letter-spacing:31.881600pt;}
.ls4a{letter-spacing:32.678640pt;}
.ls4b{letter-spacing:33.794496pt;}
.ls1c{letter-spacing:63.361486pt;}
.ls3c{letter-spacing:92.107249pt;}
.ls31{letter-spacing:98.800582pt;}
.ls41{letter-spacing:103.915249pt;}
.ls22{letter-spacing:106.869916pt;}
.ls30{letter-spacing:107.947249pt;}
.ls49{letter-spacing:110.704582pt;}
.ls1e{letter-spacing:227.506788pt;}
.ls3d{letter-spacing:232.788816pt;}
.ls46{letter-spacing:273.809808pt;}
.ls2a{letter-spacing:285.395562pt;}
.wsc4{word-spacing:-53.136000pt;}
.wsc6{word-spacing:-42.361006pt;}
.wsb9{word-spacing:-34.612790pt;}
.ws50{word-spacing:-31.880000pt;}
.wsc9{word-spacing:-25.792214pt;}
.wsbc{word-spacing:-25.739078pt;}
.ws51{word-spacing:-14.612000pt;}
.ws41{word-spacing:-13.284000pt;}
.ws53{word-spacing:-11.954667pt;}
.ws1a{word-spacing:-10.626667pt;}
.wsf0{word-spacing:-8.501333pt;}
.wsaf{word-spacing:-1.009584pt;}
.ws11c{word-spacing:-0.903312pt;}
.ws10c{word-spacing:-0.743904pt;}
.ws8b{word-spacing:-0.743745pt;}
.wsf9{word-spacing:-0.690768pt;}
.wse9{word-spacing:-0.637632pt;}
.ws9d{word-spacing:-0.584283pt;}
.wsa4{word-spacing:-0.478171pt;}
.ws128{word-spacing:-0.372005pt;}
.ws127{word-spacing:-0.371952pt;}
.ws2c{word-spacing:-0.265839pt;}
.ws94{word-spacing:-0.265680pt;}
.ws182{word-spacing:-0.170239pt;}
.ws181{word-spacing:-0.127605pt;}
.wsab{word-spacing:-0.106431pt;}
.ws118{word-spacing:-0.106325pt;}
.wsc7{word-spacing:-0.053136pt;}
.ws0{word-spacing:-0.047819pt;}
.ws52{word-spacing:-0.042507pt;}
.wsbb{word-spacing:-0.037195pt;}
.ws54{word-spacing:0.000000pt;}
.wsd1{word-spacing:0.026667pt;}
.ws40{word-spacing:0.106378pt;}
.ws3c{word-spacing:0.159195pt;}
.ws137{word-spacing:0.212661pt;}
.ws15e{word-spacing:0.254827pt;}
.wsf8{word-spacing:0.265893pt;}
.ws2a{word-spacing:0.372005pt;}
.ws142{word-spacing:0.510250pt;}
.ws9c{word-spacing:0.531466pt;}
.ws173{word-spacing:0.552417pt;}
.ws4a{word-spacing:0.584283pt;}
.ws102{word-spacing:0.690449pt;}
.ws101{word-spacing:0.690768pt;}
.ws9f{word-spacing:0.690981pt;}
.ws5c{word-spacing:0.797040pt;}
.wsf6{word-spacing:0.849910pt;}
.ws8e{word-spacing:0.850176pt;}
.ws105{word-spacing:0.903259pt;}
.ws180{word-spacing:0.935317pt;}
.ws133{word-spacing:0.956448pt;}
.ws90{word-spacing:1.009584pt;}
.ws178{word-spacing:1.062794pt;}
.ws22{word-spacing:1.115484pt;}
.wse5{word-spacing:1.168833pt;}
.wsd5{word-spacing:1.168992pt;}
.ws12b{word-spacing:1.222128pt;}
.ws143{word-spacing:1.232948pt;}
.ws115{word-spacing:1.328294pt;}
.wsbf{word-spacing:1.374085pt;}
.wsc0{word-spacing:1.379616pt;}
.ws27{word-spacing:1.381589pt;}
.ws9b{word-spacing:1.381642pt;}
.ws3{word-spacing:1.482140pt;}
.ws11{word-spacing:1.530150pt;}
.ws99{word-spacing:1.540944pt;}
.ws9a{word-spacing:1.541103pt;}
.ws177{word-spacing:1.657973pt;}
.ws43{word-spacing:1.753329pt;}
.wsd3{word-spacing:1.753382pt;}
.ws16f{word-spacing:1.785450pt;}
.wse0{word-spacing:1.806624pt;}
.ws13a{word-spacing:1.827574pt;}
.ws11f{word-spacing:1.859547pt;}
.wse8{word-spacing:1.912896pt;}
.ws11e{word-spacing:1.966032pt;}
.wsa8{word-spacing:2.019009pt;}
.wsc8{word-spacing:2.072251pt;}
.wsdf{word-spacing:2.072304pt;}
.ws11b{word-spacing:2.125706pt;}
.ws100{word-spacing:2.231712pt;}
.ws12a{word-spacing:2.444256pt;}
.wsc3{word-spacing:2.542342pt;}
.wsc2{word-spacing:2.550581pt;}
.ws144{word-spacing:2.592907pt;}
.ws47{word-spacing:2.656800pt;}
.ws72{word-spacing:2.656906pt;}
.ws113{word-spacing:2.709936pt;}
.ws6d{word-spacing:2.816208pt;}
.ws4e{word-spacing:2.816261pt;}
.ws5b{word-spacing:2.869344pt;}
.ws87{word-spacing:2.975297pt;}
.ws2f{word-spacing:3.134652pt;}
.ws10{word-spacing:3.203707pt;}
.ws62{word-spacing:3.241296pt;}
.ws119{word-spacing:3.294432pt;}
.ws42{word-spacing:3.347462pt;}
.wsd0{word-spacing:3.400810pt;}
.wsa7{word-spacing:3.453840pt;}
.ws15f{word-spacing:3.485717pt;}
.ws93{word-spacing:3.506551pt;}
.ws2{word-spacing:3.586639pt;}
.ws156{word-spacing:3.697952pt;}
.ws155{word-spacing:3.783306pt;}
.ws179{word-spacing:3.825430pt;}
.ws17d{word-spacing:3.825600pt;}
.ws175{word-spacing:3.868107pt;}
.ws9{word-spacing:3.873599pt;}
.wsb0{word-spacing:3.878662pt;}
.ws59{word-spacing:3.878822pt;}
.ws106{word-spacing:3.878928pt;}
.wsb{word-spacing:3.921083pt;}
.ws4c{word-spacing:3.932011pt;}
.wsd9{word-spacing:3.985200pt;}
.ws69{word-spacing:4.038336pt;}
.ws21{word-spacing:4.091472pt;}
.ws98{word-spacing:4.091631pt;}
.ws147{word-spacing:4.123019pt;}
.ws146{word-spacing:4.165696pt;}
.ws71{word-spacing:4.197744pt;}
.wsee{word-spacing:4.208026pt;}
.wsef{word-spacing:4.211686pt;}
.wsfe{word-spacing:4.250497pt;}
.wsc1{word-spacing:4.250667pt;}
.wsed{word-spacing:4.250808pt;}
.wsec{word-spacing:4.251007pt;}
.ws14f{word-spacing:4.253611pt;}
.wsc{word-spacing:4.303441pt;}
.ws44{word-spacing:4.357046pt;}
.wsd2{word-spacing:4.357152pt;}
.ws66{word-spacing:4.357258pt;}
.wse7{word-spacing:4.410022pt;}
.ws73{word-spacing:4.410288pt;}
.ws13d{word-spacing:4.548086pt;}
.wsb6{word-spacing:4.568379pt;}
.wsb7{word-spacing:4.569324pt;}
.wsb8{word-spacing:4.569537pt;}
.wse3{word-spacing:4.622832pt;}
.ws16b{word-spacing:4.675563pt;}
.ws38{word-spacing:4.728785pt;}
.ws124{word-spacing:4.728998pt;}
.ws17a{word-spacing:4.803041pt;}
.ws17b{word-spacing:4.803551pt;}
.wsbd{word-spacing:4.830085pt;}
.wsbe{word-spacing:4.835110pt;}
.ws61{word-spacing:4.941648pt;}
.ws136{word-spacing:5.017269pt;}
.ws4b{word-spacing:5.047761pt;}
.ws1b{word-spacing:5.207222pt;}
.ws12f{word-spacing:5.207381pt;}
.ws121{word-spacing:5.257548pt;}
.ws48{word-spacing:5.258858pt;}
.wsb5{word-spacing:5.260289pt;}
.ws85{word-spacing:5.260464pt;}
.wsd6{word-spacing:5.260997pt;}
.ws46{word-spacing:5.261483pt;}
.wsb4{word-spacing:5.270402pt;}
.ws17f{word-spacing:5.270742pt;}
.wscd{word-spacing:5.302982pt;}
.wsb3{word-spacing:5.308906pt;}
.wsa2{word-spacing:5.313141pt;}
.ws2e{word-spacing:5.313334pt;}
.ws74{word-spacing:5.313547pt;}
.ws58{word-spacing:5.313600pt;}
.ws3b{word-spacing:5.313866pt;}
.wsa5{word-spacing:5.314078pt;}
.wsa3{word-spacing:5.315146pt;}
.ws31{word-spacing:5.366683pt;}
.ws13{word-spacing:5.451185pt;}
.ws3a{word-spacing:5.472795pt;}
.wsdc{word-spacing:5.473008pt;}
.ws15c{word-spacing:5.568331pt;}
.ws176{word-spacing:5.611008pt;}
.ws10d{word-spacing:5.632416pt;}
.wsd{word-spacing:5.642124pt;}
.ws16d{word-spacing:5.653132pt;}
.ws8{word-spacing:5.737571pt;}
.ws145{word-spacing:5.738485pt;}
.ws17e{word-spacing:5.780949pt;}
.ws57{word-spacing:5.882667pt;}
.ws23{word-spacing:5.951179pt;}
.ws18{word-spacing:5.977046pt;}
.ws15{word-spacing:5.977572pt;}
.wsff{word-spacing:6.057557pt;}
.ws12c{word-spacing:6.110640pt;}
.ws134{word-spacing:6.163552pt;}
.ws7f{word-spacing:6.163723pt;}
.wsfd{word-spacing:6.216912pt;}
.ws7a{word-spacing:6.217071pt;}
.ws129{word-spacing:6.270048pt;}
.ws6a{word-spacing:6.323184pt;}
.ws91{word-spacing:6.376533pt;}
.ws10a{word-spacing:6.429297pt;}
.ws32{word-spacing:6.482379pt;}
.ws26{word-spacing:6.535728pt;}
.ws16a{word-spacing:6.545942pt;}
.ws174{word-spacing:6.631253pt;}
.ws8c{word-spacing:6.642000pt;}
.ws3f{word-spacing:6.695189pt;}
.ws132{word-spacing:6.748272pt;}
.wse2{word-spacing:6.801408pt;}
.ws160{word-spacing:6.885655pt;}
.ws162{word-spacing:6.886208pt;}
.ws29{word-spacing:6.907999pt;}
.ws161{word-spacing:6.928842pt;}
.ws92{word-spacing:7.013899pt;}
.ws86{word-spacing:7.067088pt;}
.ws17{word-spacing:7.172800pt;}
.ws10e{word-spacing:7.173360pt;}
.ws56{word-spacing:7.189333pt;}
.ws13b{word-spacing:7.226473pt;}
.wsd7{word-spacing:7.332768pt;}
.wsa0{word-spacing:7.332821pt;}
.ws14e{word-spacing:7.438709pt;}
.ws80{word-spacing:7.439040pt;}
.ws30{word-spacing:7.492017pt;}
.wsde{word-spacing:7.492176pt;}
.ws141{word-spacing:7.523510pt;}
.ws104{word-spacing:7.545312pt;}
.wsdd{word-spacing:7.598448pt;}
.wsda{word-spacing:7.651584pt;}
.ws126{word-spacing:7.757909pt;}
.ws10f{word-spacing:7.810992pt;}
.ws171{word-spacing:7.821099pt;}
.ws4f{word-spacing:7.864287pt;}
.ws169{word-spacing:7.906453pt;}
.ws2d{word-spacing:7.917583pt;}
.ws13e{word-spacing:8.076054pt;}
.ws13f{word-spacing:8.076564pt;}
.ws16e{word-spacing:8.118731pt;}
.ws114{word-spacing:8.182944pt;}
.wscf{word-spacing:8.342352pt;}
.ws125{word-spacing:8.342458pt;}
.ws16c{word-spacing:8.416320pt;}
.ws33{word-spacing:8.448252pt;}
.ws110{word-spacing:8.554896pt;}
.wsca{word-spacing:8.607979pt;}
.wscb{word-spacing:8.608298pt;}
.ws12{word-spacing:8.702902pt;}
.ws34{word-spacing:8.767227pt;}
.ws15b{word-spacing:8.884021pt;}
.ws1{word-spacing:8.894415pt;}
.ws8d{word-spacing:9.085937pt;}
.ws117{word-spacing:9.139286pt;}
.ws12e{word-spacing:9.139392pt;}
.wsdb{word-spacing:9.192528pt;}
.ws135{word-spacing:9.266453pt;}
.ws6e{word-spacing:9.298800pt;}
.ws13c{word-spacing:9.351254pt;}
.ws14b{word-spacing:9.351764pt;}
.ws76{word-spacing:9.352095pt;}
.wsa9{word-spacing:9.405072pt;}
.ws5a{word-spacing:9.458208pt;}
.ws60{word-spacing:9.458261pt;}
.wsad{word-spacing:9.458421pt;}
.wsd4{word-spacing:9.511344pt;}
.ws130{word-spacing:9.670752pt;}
.ws97{word-spacing:9.723835pt;}
.ws151{word-spacing:9.818955pt;}
.wsd8{word-spacing:9.830160pt;}
.wsf7{word-spacing:9.936432pt;}
.ws122{word-spacing:9.936645pt;}
.ws65{word-spacing:9.989568pt;}
.ws6c{word-spacing:10.095627pt;}
.ws8f{word-spacing:10.148923pt;}
.ws1c{word-spacing:10.149082pt;}
.ws158{word-spacing:10.201898pt;}
.ws183{word-spacing:10.286698pt;}
.ws77{word-spacing:10.308384pt;}
.ws9e{word-spacing:10.361733pt;}
.ws83{word-spacing:10.414550pt;}
.ws6{word-spacing:10.520011pt;}
.ws28{word-spacing:10.574117pt;}
.ws17c{word-spacing:10.626667pt;}
.ws120{word-spacing:10.627200pt;}
.wscc{word-spacing:10.733472pt;}
.ws148{word-spacing:10.839200pt;}
.ws6f{word-spacing:10.839638pt;}
.ws7c{word-spacing:10.946016pt;}
.ws78{word-spacing:10.946282pt;}
.ws15d{word-spacing:10.966677pt;}
.wse{word-spacing:10.998389pt;}
.ws14c{word-spacing:11.094155pt;}
.ws6b{word-spacing:11.158560pt;}
.ws1e{word-spacing:11.318127pt;}
.ws3e{word-spacing:11.370945pt;}
.wsaa{word-spacing:11.371104pt;}
.ws7{word-spacing:11.380795pt;}
.ws163{word-spacing:11.391744pt;}
.ws7b{word-spacing:11.636465pt;}
.ws63{word-spacing:11.689920pt;}
.wse6{word-spacing:11.796192pt;}
.ws139{word-spacing:11.986923pt;}
.ws138{word-spacing:11.988597pt;}
.wsb1{word-spacing:12.008736pt;}
.ws35{word-spacing:12.168250pt;}
.ws25{word-spacing:12.221067pt;}
.ws116{word-spacing:12.274363pt;}
.ws5d{word-spacing:12.327552pt;}
.ws2b{word-spacing:12.327765pt;}
.ws172{word-spacing:12.411989pt;}
.ws88{word-spacing:12.433824pt;}
.ws3d{word-spacing:12.487226pt;}
.wsea{word-spacing:12.646368pt;}
.ws170{word-spacing:12.709578pt;}
.ws103{word-spacing:12.752640pt;}
.wsac{word-spacing:12.805776pt;}
.ws131{word-spacing:12.858912pt;}
.ws84{word-spacing:12.912261pt;}
.ws107{word-spacing:12.965184pt;}
.ws140{word-spacing:13.049334pt;}
.ws168{word-spacing:13.092011pt;}
.ws1f{word-spacing:13.230651pt;}
.wse1{word-spacing:13.284000pt;}
.wsf4{word-spacing:13.443408pt;}
.ws157{word-spacing:13.474401pt;}
.ws14{word-spacing:13.580788pt;}
.ws112{word-spacing:13.709088pt;}
.ws14d{word-spacing:13.857301pt;}
.ws36{word-spacing:13.868549pt;}
.wseb{word-spacing:14.080827pt;}
.ws152{word-spacing:14.112256pt;}
.ws5e{word-spacing:14.559264pt;}
.ws149{word-spacing:14.622123pt;}
.ws14a{word-spacing:14.622633pt;}
.wsf5{word-spacing:14.665536pt;}
.ws153{word-spacing:14.707434pt;}
.wsba{word-spacing:14.718672pt;}
.ws70{word-spacing:14.824944pt;}
.ws154{word-spacing:14.919712pt;}
.ws67{word-spacing:14.931216pt;}
.ws7d{word-spacing:14.984352pt;}
.wsae{word-spacing:15.037488pt;}
.wse4{word-spacing:15.143760pt;}
.ws1d{word-spacing:15.303221pt;}
.ws39{word-spacing:15.355985pt;}
.ws5{word-spacing:15.493344pt;}
.wsce{word-spacing:15.568848pt;}
.ws15a{word-spacing:15.685045pt;}
.ws55{word-spacing:15.685333pt;}
.ws159{word-spacing:15.687413pt;}
.ws19{word-spacing:15.940534pt;}
.wsa1{word-spacing:15.940641pt;}
.wsb2{word-spacing:15.940800pt;}
.ws45{word-spacing:15.941066pt;}
.ws79{word-spacing:15.993936pt;}
.wsa{word-spacing:16.019206pt;}
.ws24{word-spacing:16.047231pt;}
.ws150{word-spacing:16.067435pt;}
.ws10b{word-spacing:16.259563pt;}
.wsfa{word-spacing:16.578538pt;}
.ws37{word-spacing:16.631196pt;}
.wsa6{word-spacing:16.631568pt;}
.wsfc{word-spacing:16.631887pt;}
.ws75{word-spacing:16.684704pt;}
.ws4d{word-spacing:17.215745pt;}
.wsf3{word-spacing:17.322336pt;}
.wsc5{word-spacing:17.374770pt;}
.ws82{word-spacing:17.640993pt;}
.ws89{word-spacing:17.747424pt;}
.ws111{word-spacing:17.906832pt;}
.ws164{word-spacing:17.980448pt;}
.ws64{word-spacing:18.066240pt;}
.wsf{word-spacing:18.314645pt;}
.ws123{word-spacing:18.385003pt;}
.ws11a{word-spacing:18.491115pt;}
.ws49{word-spacing:18.544251pt;}
.ws12d{word-spacing:18.863280pt;}
.ws109{word-spacing:18.863439pt;}
.wsfb{word-spacing:18.969552pt;}
.ws16{word-spacing:19.079648pt;}
.ws68{word-spacing:19.128960pt;}
.ws7e{word-spacing:19.394640pt;}
.ws81{word-spacing:19.501337pt;}
.ws11d{word-spacing:19.606918pt;}
.ws165{word-spacing:19.680714pt;}
.ws166{word-spacing:19.722838pt;}
.ws167{word-spacing:19.808192pt;}
.ws4{word-spacing:19.892804pt;}
.ws108{word-spacing:19.978658pt;}
.ws20{word-spacing:20.510655pt;}
.ws8a{word-spacing:21.041856pt;}
.ws5f{word-spacing:21.838896pt;}
.ws95{word-spacing:24.017206pt;}
.ws96{word-spacing:32.838048pt;}
.wsf1{word-spacing:67.883147pt;}
.wsf2{word-spacing:79.359947pt;}
._11{margin-left:-37.460880pt;}
._d{margin-left:-7.173360pt;}
._7{margin-left:-5.589193pt;}
._e{margin-left:-4.574757pt;}
._0{margin-left:-3.633119pt;}
._4{margin-left:-2.579530pt;}
._1{margin-left:-1.531297pt;}
._8{width:1.021182pt;}
._5{width:2.657066pt;}
._1c{width:10.243639pt;}
._1b{width:11.562026pt;}
._6{width:12.752481pt;}
._3{width:14.966956pt;}
._c{width:18.746298pt;}
._a{width:21.829090pt;}
._b{width:25.143499pt;}
._2{width:26.539743pt;}
._10{width:29.754624pt;}
._1a{width:34.155456pt;}
._f{width:53.419993pt;}
._13{width:89.944107pt;}
._19{width:143.842560pt;}
._17{width:154.469227pt;}
._14{width:173.597227pt;}
._15{width:217.464064pt;}
._18{width:252.552159pt;}
._12{width:267.536960pt;}
._16{width:271.382612pt;}
._9{width:386.666667pt;}
.fs9{font-size:26.565333pt;}
.fs7{font-size:31.882667pt;}
.fsa{font-size:34.005333pt;}
.fs3{font-size:37.194667pt;}
.fs2{font-size:42.506667pt;}
.fs0{font-size:47.818667pt;}
.fs1{font-size:53.136000pt;}
.fs8{font-size:53.333333pt;}
.fs6{font-size:58.448000pt;}
.fs4{font-size:64.000000pt;}
.fs5{font-size:127.520000pt;}
.y0{bottom:0.000000pt;}
.y14b{bottom:37.146667pt;}
.yfc{bottom:39.813333pt;}
.yb6{bottom:40.398667pt;}
.y17d{bottom:41.381333pt;}
.y1e4{bottom:50.068000pt;}
.y58{bottom:54.129333pt;}
.y2c{bottom:100.740000pt;}
.y1b9{bottom:112.696000pt;}
.y2b{bottom:116.680000pt;}
.ye6{bottom:116.681333pt;}
.y1b8{bottom:124.650667pt;}
.y2a{bottom:132.620000pt;}
.yfb{bottom:132.621333pt;}
.y1b7{bottom:136.606667pt;}
.ye5{bottom:140.228000pt;}
.ye4{bottom:143.930667pt;}
.y4d{bottom:148.560000pt;}
.y29{bottom:148.561333pt;}
.y1b6{bottom:160.516000pt;}
.y4c{bottom:164.500000pt;}
.y28{bottom:164.501333pt;}
.y12b{bottom:167.256000pt;}
.yb5{bottom:168.569333pt;}
.ye3{bottom:171.990667pt;}
.y1b5{bottom:172.472000pt;}
.y27{bottom:180.441333pt;}
.y1b4{bottom:184.426667pt;}
.yfa{bottom:184.605333pt;}
.y14a{bottom:185.997333pt;}
.y12a{bottom:187.544000pt;}
.ye2{bottom:187.930667pt;}
.yb4{bottom:192.780000pt;}
.y26{bottom:196.381333pt;}
.yf9{bottom:205.690667pt;}
.y1b3{bottom:208.337333pt;}
.yb3{bottom:208.721333pt;}
.yf8{bottom:209.393333pt;}
.ye1{bottom:212.118667pt;}
.y25{bottom:212.321333pt;}
.y15c{bottom:212.600000pt;}
.y129{bottom:212.846667pt;}
.y149{bottom:214.236000pt;}
.y17c{bottom:214.793333pt;}
.ye0{bottom:219.500000pt;}
.y1b2{bottom:220.292000pt;}
.yb2{bottom:224.661333pt;}
.yf7{bottom:226.142667pt;}
.y24{bottom:227.866667pt;}
.y4b{bottom:228.261333pt;}
.y84{bottom:228.262667pt;}
.y15b{bottom:228.540000pt;}
.ydf{bottom:228.612000pt;}
.y128{bottom:228.786667pt;}
.y148{bottom:230.176000pt;}
.y17b{bottom:230.733333pt;}
.y1b1{bottom:232.248000pt;}
.yf6{bottom:242.082667pt;}
.yb1{bottom:242.884000pt;}
.y23{bottom:243.806667pt;}
.y1b0{bottom:244.202667pt;}
.y15a{bottom:244.480000pt;}
.y127{bottom:244.726667pt;}
.y83{bottom:245.293333pt;}
.y147{bottom:246.116000pt;}
.y4a{bottom:248.429333pt;}
.yde{bottom:248.654667pt;}
.y17a{bottom:250.801333pt;}
.y1af{bottom:256.157333pt;}
.yb0{bottom:258.825333pt;}
.y22{bottom:259.746667pt;}
.y159{bottom:260.420000pt;}
.y82{bottom:261.233333pt;}
.yf5{bottom:263.198667pt;}
.y126{bottom:263.421333pt;}
.ydd{bottom:264.594667pt;}
.yf4{bottom:266.901333pt;}
.y146{bottom:267.612000pt;}
.y1ae{bottom:268.113333pt;}
.y49{bottom:273.396000pt;}
.yaf{bottom:274.765333pt;}
.y179{bottom:275.362667pt;}
.y21{bottom:275.686667pt;}
.y158{bottom:276.360000pt;}
.y81{bottom:277.173333pt;}
.y125{bottom:279.362667pt;}
.y1ad{bottom:280.068000pt;}
.ydc{bottom:286.565333pt;}
.y48{bottom:289.336000pt;}
.yae{bottom:290.705333pt;}
.y178{bottom:291.304000pt;}
.y20{bottom:291.626667pt;}
.y1ac{bottom:292.022667pt;}
.y157{bottom:292.301333pt;}
.yf3{bottom:292.529333pt;}
.y80{bottom:293.113333pt;}
.y124{bottom:295.302667pt;}
.y145{bottom:295.850667pt;}
.y1ab{bottom:303.978667pt;}
.y47{bottom:305.276000pt;}
.yad{bottom:306.645333pt;}
.y177{bottom:307.244000pt;}
.y1f{bottom:307.568000pt;}
.y156{bottom:308.241333pt;}
.yf2{bottom:308.469333pt;}
.y7f{bottom:309.054667pt;}
.ydb{bottom:309.853333pt;}
.y123{bottom:311.242667pt;}
.y144{bottom:311.790667pt;}
.y1aa{bottom:315.933333pt;}
.y46{bottom:321.217333pt;}
.yac{bottom:322.585333pt;}
.y176{bottom:323.184000pt;}
.y1e{bottom:323.508000pt;}
.y155{bottom:324.181333pt;}
.y7e{bottom:324.994667pt;}
.y122{bottom:327.182667pt;}
.y143{bottom:327.730667pt;}
.y1a9{bottom:327.889333pt;}
.yf1{bottom:328.573333pt;}
.y45{bottom:337.157333pt;}
.yab{bottom:338.525333pt;}
.y175{bottom:339.124000pt;}
.yda{bottom:339.241333pt;}
.y1d{bottom:339.448000pt;}
.y1a8{bottom:339.844000pt;}
.y154{bottom:340.121333pt;}
.y7d{bottom:340.934667pt;}
.y121{bottom:343.122667pt;}
.y142{bottom:344.062667pt;}
.yed{bottom:349.181333pt;}
.y1a7{bottom:351.798667pt;}
.y44{bottom:353.097333pt;}
.yaa{bottom:354.466667pt;}
.y174{bottom:355.064000pt;}
.yd9{bottom:355.182667pt;}
.y1c{bottom:355.388000pt;}
.y153{bottom:356.061333pt;}
.y7c{bottom:356.874667pt;}
.y120{bottom:359.062667pt;}
.y141{bottom:360.002667pt;}
.yf0{bottom:361.352000pt;}
.y1a6{bottom:363.754667pt;}
.yec{bottom:365.054667pt;}
.yef{bottom:365.906667pt;}
.y43{bottom:369.037333pt;}
.ya9{bottom:370.406667pt;}
.y173{bottom:370.946667pt;}
.yd8{bottom:371.122667pt;}
.y1b{bottom:371.328000pt;}
.yee{bottom:374.041333pt;}
.y11f{bottom:375.004000pt;}
.y1a5{bottom:375.709333pt;}
.y140{bottom:375.942667pt;}
.y152{bottom:377.852000pt;}
.y7b{bottom:380.817333pt;}
.y42{bottom:384.977333pt;}
.ya8{bottom:386.346667pt;}
.y172{bottom:386.888000pt;}
.y1a{bottom:387.269333pt;}
.y1a4{bottom:387.664000pt;}
.yd7{bottom:390.832000pt;}
.y11e{bottom:390.944000pt;}
.y13f{bottom:391.882667pt;}
.yeb{bottom:395.758667pt;}
.y1a3{bottom:399.620000pt;}
.y41{bottom:400.918667pt;}
.ya7{bottom:402.286667pt;}
.y171{bottom:402.828000pt;}
.y151{bottom:405.118667pt;}
.yd6{bottom:406.772000pt;}
.y11d{bottom:406.884000pt;}
.y19{bottom:406.997333pt;}
.yea{bottom:407.996000pt;}
.y1a2{bottom:411.574667pt;}
.ye9{bottom:411.698667pt;}
.y13e{bottom:413.380000pt;}
.y7a{bottom:414.997333pt;}
.y1e3{bottom:415.560000pt;}
.y40{bottom:416.858667pt;}
.ya6{bottom:418.226667pt;}
.y170{bottom:418.768000pt;}
.y150{bottom:421.058667pt;}
.yd5{bottom:422.713333pt;}
.y11c{bottom:422.824000pt;}
.y1a1{bottom:423.530667pt;}
.y1e2{bottom:427.514667pt;}
.y79{bottom:430.938667pt;}
.ye8{bottom:432.480000pt;}
.y3f{bottom:432.798667pt;}
.y18{bottom:433.224000pt;}
.ya5{bottom:434.166667pt;}
.y16f{bottom:434.708000pt;}
.y1a0{bottom:435.485333pt;}
.y14f{bottom:436.998667pt;}
.yd4{bottom:438.653333pt;}
.y11b{bottom:438.764000pt;}
.y1e1{bottom:439.470667pt;}
.y13d{bottom:441.617333pt;}
.y17{bottom:446.506667pt;}
.y78{bottom:446.878667pt;}
.y19f{bottom:447.440000pt;}
.y3e{bottom:448.738667pt;}
.y16e{bottom:450.648000pt;}
.y1e0{bottom:451.425333pt;}
.ya4{bottom:452.390667pt;}
.y14e{bottom:452.938667pt;}
.yd3{bottom:454.593333pt;}
.y11a{bottom:457.460000pt;}
.y13c{bottom:457.557333pt;}
.y16{bottom:459.394667pt;}
.y19e{bottom:459.396000pt;}
.y77{bottom:462.818667pt;}
.y1df{bottom:463.381333pt;}
.y16d{bottom:466.588000pt;}
.y3d{bottom:467.350667pt;}
.yd2{bottom:470.533333pt;}
.y19d{bottom:471.350667pt;}
.ya3{bottom:472.400000pt;}
.y15{bottom:472.678667pt;}
.y119{bottom:473.400000pt;}
.y13b{bottom:473.497333pt;}
.y14d{bottom:474.034667pt;}
.ye7{bottom:475.216000pt;}
.y1de{bottom:475.336000pt;}
.y76{bottom:478.758667pt;}
.y16c{bottom:482.529333pt;}
.y3c{bottom:483.290667pt;}
.y19c{bottom:483.305333pt;}
.y14{bottom:485.962667pt;}
.y1dd{bottom:487.290667pt;}
.y13a{bottom:489.438667pt;}
.yd1{bottom:490.244000pt;}
.y118{bottom:493.688000pt;}
.y75{bottom:494.698667pt;}
.y19b{bottom:495.261333pt;}
.ya2{bottom:496.610667pt;}
.y16b{bottom:498.469333pt;}
.y3b{bottom:499.230667pt;}
.y13{bottom:499.245333pt;}
.y1dc{bottom:499.246667pt;}
.y139{bottom:505.378667pt;}
.y19a{bottom:507.216000pt;}
.y1db{bottom:511.201333pt;}
.y74{bottom:511.730667pt;}
.yd0{bottom:512.213333pt;}
.y12{bottom:512.529333pt;}
.ya1{bottom:512.550667pt;}
.y16a{bottom:514.409333pt;}
.y3a{bottom:515.178667pt;}
.y14c{bottom:517.724000pt;}
.y117{bottom:518.989333pt;}
.y199{bottom:519.170667pt;}
.y1da{bottom:523.157333pt;}
.y138{bottom:524.410667pt;}
.y11{bottom:525.813333pt;}
.y73{bottom:527.670667pt;}
.ya0{bottom:528.490667pt;}
.y169{bottom:530.349333pt;}
.y39{bottom:531.118667pt;}
.y198{bottom:531.126667pt;}
.y116{bottom:534.930667pt;}
.y1d9{bottom:535.112000pt;}
.y10{bottom:539.096000pt;}
.y137{bottom:540.350667pt;}
.ycf{bottom:541.602667pt;}
.y197{bottom:543.081333pt;}
.y72{bottom:543.610667pt;}
.y9f{bottom:544.432000pt;}
.y168{bottom:546.232000pt;}
.y38{bottom:547.058667pt;}
.y1d8{bottom:547.066667pt;}
.y115{bottom:550.870667pt;}
.yf{bottom:552.380000pt;}
.y136{bottom:556.290667pt;}
.yce{bottom:557.542667pt;}
.y1d7{bottom:559.022667pt;}
.y71{bottom:559.550667pt;}
.y9e{bottom:560.372000pt;}
.y196{bottom:562.010667pt;}
.y167{bottom:562.172000pt;}
.y37{bottom:562.998667pt;}
.ye{bottom:565.664000pt;}
.y114{bottom:566.810667pt;}
.y1d6{bottom:570.977333pt;}
.y135{bottom:572.232000pt;}
.ycd{bottom:573.482667pt;}
.y70{bottom:575.490667pt;}
.y9d{bottom:576.312000pt;}
.y166{bottom:578.113333pt;}
.y36{bottom:578.940000pt;}
.yd{bottom:578.946667pt;}
.y1d5{bottom:582.933333pt;}
.y195{bottom:584.526667pt;}
.y113{bottom:585.505333pt;}
.y134{bottom:588.172000pt;}
.ycc{bottom:589.422667pt;}
.y6f{bottom:591.432000pt;}
.yc{bottom:592.230667pt;}
.y9c{bottom:592.252000pt;}
.y165{bottom:594.053333pt;}
.y35{bottom:594.880000pt;}
.y1d4{bottom:594.888000pt;}
.y194{bottom:600.466667pt;}
.y112{bottom:601.445333pt;}
.yb{bottom:605.514667pt;}
.y1d3{bottom:606.842667pt;}
.y6e{bottom:607.372000pt;}
.y9b{bottom:608.192000pt;}
.ycb{bottom:609.133333pt;}
.y164{bottom:609.993333pt;}
.y34{bottom:610.820000pt;}
.y193{bottom:616.406667pt;}
.y111{bottom:617.386667pt;}
.ya{bottom:618.797333pt;}
.y1d2{bottom:618.798667pt;}
.y6d{bottom:623.312000pt;}
.y9a{bottom:624.132000pt;}
.yca{bottom:625.073333pt;}
.y163{bottom:625.933333pt;}
.y33{bottom:626.760000pt;}
.y1d1{bottom:630.753333pt;}
.y9{bottom:632.081333pt;}
.y192{bottom:632.346667pt;}
.y110{bottom:633.326667pt;}
.y133{bottom:636.905333pt;}
.y6c{bottom:639.252000pt;}
.y99{bottom:640.073333pt;}
.y162{bottom:641.873333pt;}
.y32{bottom:642.700000pt;}
.y1d0{bottom:642.708000pt;}
.y8{bottom:645.364000pt;}
.yc9{bottom:647.042667pt;}
.y191{bottom:648.286667pt;}
.y132{bottom:648.860000pt;}
.y10f{bottom:652.021333pt;}
.y1cf{bottom:654.664000pt;}
.y98{bottom:656.013333pt;}
.y161{bottom:657.813333pt;}
.y31{bottom:658.641333pt;}
.y7{bottom:658.648000pt;}
.y131{bottom:660.814667pt;}
.y6b{bottom:663.194667pt;}
.y190{bottom:664.228000pt;}
.y1ce{bottom:666.618667pt;}
.y10e{bottom:667.961333pt;}
.y6{bottom:671.932000pt;}
.y97{bottom:671.953333pt;}
.y130{bottom:672.770667pt;}
.y160{bottom:673.754667pt;}
.y30{bottom:674.581333pt;}
.yc8{bottom:676.432000pt;}
.y1cd{bottom:678.573333pt;}
.y18f{bottom:680.168000pt;}
.y10d{bottom:683.902667pt;}
.y5{bottom:685.214667pt;}
.y15f{bottom:689.637333pt;}
.y96{bottom:690.177333pt;}
.y2f{bottom:690.528000pt;}
.y1cc{bottom:690.529333pt;}
.y12f{bottom:691.665333pt;}
.yc7{bottom:692.372000pt;}
.y18e{bottom:696.108000pt;}
.y6a{bottom:697.374667pt;}
.y4{bottom:698.498667pt;}
.y10c{bottom:699.889333pt;}
.y1cb{bottom:702.484000pt;}
.y15e{bottom:705.577333pt;}
.y2e{bottom:706.468000pt;}
.yc6{bottom:708.312000pt;}
.y95{bottom:710.185333pt;}
.y3{bottom:711.782667pt;}
.y18d{bottom:712.048000pt;}
.y69{bottom:713.316000pt;}
.y1ca{bottom:714.440000pt;}
.y10b{bottom:715.829333pt;}
.y12e{bottom:719.062667pt;}
.y15d{bottom:721.517333pt;}
.y2d{bottom:722.409333pt;}
.y2{bottom:725.065333pt;}
.y1c9{bottom:726.394667pt;}
.y18c{bottom:727.988000pt;}
.yc5{bottom:728.022667pt;}
.y68{bottom:729.256000pt;}
.y12d{bottom:731.018667pt;}
.y10a{bottom:731.769333pt;}
.y94{bottom:734.396000pt;}
.y1{bottom:738.349333pt;}
.y18b{bottom:743.928000pt;}
.yc4{bottom:743.962667pt;}
.y67{bottom:745.196000pt;}
.y109{bottom:747.709333pt;}
.y1c8{bottom:750.305333pt;}
.y93{bottom:750.337333pt;}
.yc3{bottom:759.902667pt;}
.y66{bottom:761.136000pt;}
.y1c7{bottom:762.260000pt;}
.y108{bottom:763.649333pt;}
.y18a{bottom:763.654667pt;}
.y12c{bottom:763.853333pt;}
.y92{bottom:766.277333pt;}
.y1c6{bottom:774.214667pt;}
.yc2{bottom:775.842667pt;}
.y65{bottom:777.076000pt;}
.y107{bottom:779.590667pt;}
.y91{bottom:782.217333pt;}
.y189{bottom:786.170667pt;}
.y57{bottom:789.130667pt;}
.yc1{bottom:791.784000pt;}
.y64{bottom:793.016000pt;}
.y106{bottom:795.530667pt;}
.y1c5{bottom:798.125333pt;}
.y90{bottom:798.157333pt;}
.y188{bottom:802.110667pt;}
.y56{bottom:803.704000pt;}
.yc0{bottom:807.724000pt;}
.y63{bottom:808.957333pt;}
.y1c4{bottom:810.081333pt;}
.y105{bottom:811.470667pt;}
.y8f{bottom:814.097333pt;}
.y187{bottom:818.050667pt;}
.y55{bottom:818.277333pt;}
.y1c3{bottom:822.036000pt;}
.ybf{bottom:823.664000pt;}
.y62{bottom:825.988000pt;}
.y104{bottom:827.410667pt;}
.y8e{bottom:829.922667pt;}
.y54{bottom:832.850667pt;}
.y186{bottom:833.990667pt;}
.y61{bottom:841.928000pt;}
.ybe{bottom:843.373333pt;}
.y8d{bottom:845.862667pt;}
.y1c2{bottom:845.946667pt;}
.y53{bottom:847.424000pt;}
.y103{bottom:847.698667pt;}
.y185{bottom:849.930667pt;}
.y60{bottom:857.868000pt;}
.y1c1{bottom:857.901333pt;}
.ybd{bottom:859.841333pt;}
.y8c{bottom:861.802667pt;}
.y52{bottom:863.628000pt;}
.y184{bottom:865.870667pt;}
.y102{bottom:868.102667pt;}
.y1c0{bottom:869.856000pt;}
.y5f{bottom:873.809333pt;}
.ybc{bottom:875.781333pt;}
.y8b{bottom:877.742667pt;}
.y51{bottom:881.381333pt;}
.y183{bottom:881.812000pt;}
.y5e{bottom:889.749333pt;}
.ybb{bottom:891.721333pt;}
.y101{bottom:893.404000pt;}
.y8a{bottom:893.682667pt;}
.y1bf{bottom:893.766667pt;}
.y182{bottom:897.752000pt;}
.y5d{bottom:905.689333pt;}
.y1be{bottom:905.722667pt;}
.yba{bottom:907.662667pt;}
.y100{bottom:909.345333pt;}
.y89{bottom:909.622667pt;}
.y181{bottom:913.692000pt;}
.y1bd{bottom:917.677333pt;}
.y5c{bottom:921.629333pt;}
.yb9{bottom:923.602667pt;}
.y50{bottom:923.830667pt;}
.yff{bottom:925.285333pt;}
.y88{bottom:925.564000pt;}
.y180{bottom:929.632000pt;}
.y5b{bottom:937.569333pt;}
.yb8{bottom:939.542667pt;}
.yfe{bottom:941.225333pt;}
.y87{bottom:941.504000pt;}
.y1bc{bottom:941.588000pt;}
.y17f{bottom:945.572000pt;}
.y5a{bottom:953.509333pt;}
.y1bb{bottom:953.542667pt;}
.yb7{bottom:955.482667pt;}
.yfd{bottom:957.165333pt;}
.y86{bottom:957.444000pt;}
.y4f{bottom:961.024000pt;}
.y17e{bottom:961.512000pt;}
.y1ba{bottom:965.497333pt;}
.y85{bottom:977.452000pt;}
.y59{bottom:977.453333pt;}
.y4e{bottom:1027.885333pt;}
.h9{height:21.552683pt;}
.h18{height:26.147851pt;}
.he{height:27.896000pt;}
.h1d{height:29.159573pt;}
.h13{height:29.244587pt;}
.h2{height:33.090517pt;}
.h1{height:33.425248pt;}
.ha{height:36.119792pt;}
.hb{height:36.451296pt;}
.h3{height:36.557568pt;}
.h1c{height:36.770112pt;}
.h4{height:37.460880pt;}
.hf{height:39.852000pt;}
.h16{height:41.180400pt;}
.h5{height:46.625000pt;}
.h12{height:47.176000pt;}
.h8{height:49.849173pt;}
.h17{height:50.480000pt;}
.h1b{height:51.368235pt;}
.h19{height:52.088000pt;}
.h1a{height:52.271547pt;}
.h10{height:55.496000pt;}
.h15{height:61.986667pt;}
.h11{height:64.648000pt;}
.h14{height:70.306667pt;}
.hc{height:75.798667pt;}
.hd{height:86.928000pt;}
.h7{height:87.733760pt;}
.h6{height:89.264000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.285333pt;}
.x8{left:67.249333pt;}
.x24{left:69.150667pt;}
.x30{left:70.598667pt;}
.x13{left:76.750667pt;}
.x1{left:78.569333pt;}
.x31{left:89.630667pt;}
.x12{left:91.981333pt;}
.x2b{left:121.544000pt;}
.xa{left:122.770667pt;}
.x14{left:137.646667pt;}
.x25{left:139.654667pt;}
.x2a{left:140.730667pt;}
.x18{left:152.124000pt;}
.x19{left:161.634667pt;}
.x2e{left:176.509333pt;}
.x3{left:180.826667pt;}
.x2c{left:184.472000pt;}
.x15{left:190.117333pt;}
.x2f{left:195.464000pt;}
.xb{left:215.545333pt;}
.x16{left:216.724000pt;}
.x17{left:262.192000pt;}
.xc{left:350.722667pt;}
.xf{left:352.881333pt;}
.x9{left:356.657333pt;}
.xd{left:363.790667pt;}
.x10{left:369.337333pt;}
.xe{left:378.400000pt;}
.x4{left:415.970667pt;}
.x5{left:429.253333pt;}
.x32{left:440.316000pt;}
.x6{left:442.666667pt;}
.x29{left:452.629333pt;}
.x28{left:457.750667pt;}
.x27{left:462.262667pt;}
.x11{left:468.608000pt;}
.x7{left:476.232000pt;}
.x26{left:488.445333pt;}
.x1d{left:489.660000pt;}
.x1a{left:502.754667pt;}
.x22{left:509.417333pt;}
.x2d{left:524.370667pt;}
.x1e{left:543.666667pt;}
.x23{left:563.425333pt;}
.x20{left:569.329333pt;}
.x1b{left:588.333333pt;}
.x1f{left:589.880000pt;}
.x21{left:646.549333pt;}
.x1c{left:682.982667pt;}
}




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