
    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_3973a8295e849190aa74f3da.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_1ca203c021b63545c928755f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_43209e22dcde553424eafc6c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_6c29a54769bab49cfba83a04.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.862305;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_ba381ce5151312588cd5dd44.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.890625;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_226a8e4c34ed89d131055f14.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.766602;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_4fe4107a2f4354550599ee97.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_143f8bf0e29532e71a6dfa98.woff2')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_1e136b5023825afb21409fce.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910645;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_51c0927cb60034e7ecbd4cd7.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.106934;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_2041f9962df6e4ef8b6975e3.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910645;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_c2b140b2717cbbdd8deda058.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910645;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_ff4ca7b446e03666037fa6c3.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910645;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_f77d8600606138a343618d19.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910645;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_4f7c163577c348e3c16daa38.woff2')format("woff");}.fff{font-family:fff;line-height:0.910645;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_50d869eed640527ed485f198.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.910645;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_63abd612c2de0ad865bb9ea6.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.104004;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_3fb73b7365ac5958611d4b42.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.051758;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_bb7f73d88bbf3252cf20be22.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.890625;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_bb7f73d88bbf3252cf20be22.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.890625;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);}
.v2{vertical-align:-33.120000px;}
.v3{vertical-align:-9.264000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:36.000000px;}
.ls4d{letter-spacing:-1.512000px;}
.ls43{letter-spacing:-1.440000px;}
.ls19{letter-spacing:-1.126080px;}
.ls14{letter-spacing:-1.013040px;}
.ls29{letter-spacing:-1.008000px;}
.ls4e{letter-spacing:-0.936000px;}
.ls17{letter-spacing:-0.861120px;}
.ls18{letter-spacing:-0.728640px;}
.ls27{letter-spacing:-0.720000px;}
.ls13{letter-spacing:-0.530640px;}
.ls32{letter-spacing:-0.504000px;}
.ls1a{letter-spacing:-0.463680px;}
.ls30{letter-spacing:-0.432000px;}
.ls12{letter-spacing:-0.289440px;}
.ls1b{letter-spacing:-0.288000px;}
.ls2b{letter-spacing:-0.216000px;}
.ls2f{letter-spacing:-0.179280px;}
.ls16{letter-spacing:-0.144000px;}
.ls44{letter-spacing:-0.072000px;}
.ls2e{letter-spacing:-0.059760px;}
.ls10{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.072000px;}
.ls3a{letter-spacing:0.119520px;}
.ls5{letter-spacing:0.132480px;}
.lse{letter-spacing:0.144000px;}
.ls2c{letter-spacing:0.179280px;}
.ls3{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.192960px;}
.ls3e{letter-spacing:0.198720px;}
.ls25{letter-spacing:0.204000px;}
.ls31{letter-spacing:0.216000px;}
.ls15{letter-spacing:0.252720px;}
.ls36{letter-spacing:0.262080px;}
.ls6{letter-spacing:0.264960px;}
.lsb{letter-spacing:0.288000px;}
.ls11{letter-spacing:0.289440px;}
.ls34{letter-spacing:0.358560px;}
.ls24{letter-spacing:0.360000px;}
.ls2a{letter-spacing:0.385920px;}
.ls45{letter-spacing:0.504000px;}
.ls3c{letter-spacing:0.529920px;}
.ls1{letter-spacing:0.540000px;}
.ls3b{letter-spacing:0.662400px;}
.ls26{letter-spacing:0.720000px;}
.ls8{letter-spacing:0.728640px;}
.ls4c{letter-spacing:0.792000px;}
.ls3d{letter-spacing:0.794880px;}
.ls28{letter-spacing:0.864000px;}
.ls35{letter-spacing:1.391040px;}
.ls20{letter-spacing:1.440000px;}
.ls37{letter-spacing:1.457280px;}
.ls41{letter-spacing:1.584000px;}
.lsc{letter-spacing:2.160000px;}
.ls2{letter-spacing:2.880000px;}
.ls2d{letter-spacing:3.600000px;}
.ls21{letter-spacing:4.320000px;}
.ls1d{letter-spacing:5.040000px;}
.ls22{letter-spacing:5.760000px;}
.ls40{letter-spacing:6.480000px;}
.ls1e{letter-spacing:7.200000px;}
.ls7{letter-spacing:9.339840px;}
.ls39{letter-spacing:9.360000px;}
.ls42{letter-spacing:10.080000px;}
.ls4{letter-spacing:10.800000px;}
.ls23{letter-spacing:11.520000px;}
.ls48{letter-spacing:11.828160px;}
.ls47{letter-spacing:12.960000px;}
.ls1c{letter-spacing:13.680000px;}
.ls38{letter-spacing:14.400000px;}
.ls3f{letter-spacing:15.840000px;}
.ls1f{letter-spacing:15.984000px;}
.lsf{letter-spacing:18.720000px;}
.ls46{letter-spacing:22.320000px;}
.lsa{letter-spacing:23.760000px;}
.ls9{letter-spacing:24.480000px;}
.ls4f{letter-spacing:24.788160px;}
.ls49{letter-spacing:28.080000px;}
.ls4a{letter-spacing:30.240000px;}
.ls4b{letter-spacing:32.400000px;}
.ls33{letter-spacing:1957.956000px;}
.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;}
}
.ws2e{word-spacing:-72.000000px;}
.ws9f{word-spacing:-18.792000px;}
.wsa{word-spacing:-18.144000px;}
.ws72{word-spacing:-18.017280px;}
.ws1{word-spacing:-18.000000px;}
.ws71{word-spacing:-17.951040px;}
.ws83{word-spacing:-17.928000px;}
.ws9{word-spacing:-17.856000px;}
.ws73{word-spacing:-17.784000px;}
.ws2b{word-spacing:-17.712000px;}
.ws5e{word-spacing:-17.568000px;}
.ws2c{word-spacing:-17.280000px;}
.ws2d{word-spacing:-16.992000px;}
.ws4{word-spacing:-16.824960px;}
.ws7{word-spacing:-16.692480px;}
.ws9e{word-spacing:-16.560000px;}
.ws8{word-spacing:-15.831360px;}
.ws5{word-spacing:-15.698880px;}
.ws6{word-spacing:-15.433920px;}
.ws70{word-spacing:-15.059520px;}
.ws5d{word-spacing:-14.940000px;}
.ws5c{word-spacing:-14.760720px;}
.ws2f{word-spacing:-12.445920px;}
.ws3{word-spacing:-12.060000px;}
.ws0{word-spacing:-11.529360px;}
.ws50{word-spacing:-0.864000px;}
.ws19{word-spacing:-0.728640px;}
.ws48{word-spacing:-0.720000px;}
.ws88{word-spacing:-0.504000px;}
.ws9d{word-spacing:-0.358560px;}
.ws10{word-spacing:-0.252720px;}
.ws6b{word-spacing:-0.216000px;}
.ws61{word-spacing:-0.179280px;}
.wsc{word-spacing:-0.144720px;}
.ws76{word-spacing:-0.132480px;}
.ws2{word-spacing:-0.072000px;}
.wsb{word-spacing:0.000000px;}
.ws5f{word-spacing:0.059760px;}
.ws30{word-spacing:0.119520px;}
.ws74{word-spacing:0.132480px;}
.ws11{word-spacing:0.144000px;}
.ws5b{word-spacing:0.216000px;}
.ws60{word-spacing:0.239040px;}
.ws26{word-spacing:0.288000px;}
.ws1d{word-spacing:0.397440px;}
.ws68{word-spacing:0.432000px;}
.wsd{word-spacing:0.434160px;}
.ws1b{word-spacing:0.463680px;}
.ws6e{word-spacing:0.504000px;}
.ws75{word-spacing:0.596160px;}
.ws54{word-spacing:0.648000px;}
.ws1e{word-spacing:0.662400px;}
.wse{word-spacing:0.675360px;}
.ws6f{word-spacing:0.720000px;}
.ws1c{word-spacing:0.794880px;}
.ws55{word-spacing:0.936000px;}
.wsf{word-spacing:1.013040px;}
.ws87{word-spacing:1.152000px;}
.ws77{word-spacing:1.192320px;}
.ws91{word-spacing:1.224000px;}
.ws3b{word-spacing:1.296000px;}
.ws3c{word-spacing:1.368000px;}
.ws1a{word-spacing:1.391040px;}
.wsa8{word-spacing:1.440000px;}
.ws3d{word-spacing:1.512000px;}
.ws29{word-spacing:1.944000px;}
.ws65{word-spacing:2.016000px;}
.ws27{word-spacing:2.088000px;}
.wsa2{word-spacing:2.160000px;}
.ws28{word-spacing:2.232000px;}
.ws84{word-spacing:2.304000px;}
.wsa7{word-spacing:2.376000px;}
.ws13{word-spacing:2.592000px;}
.ws31{word-spacing:2.664000px;}
.ws12{word-spacing:2.808000px;}
.ws90{word-spacing:2.952000px;}
.ws66{word-spacing:3.312000px;}
.ws40{word-spacing:3.384000px;}
.ws18{word-spacing:3.510720px;}
.ws34{word-spacing:3.528000px;}
.ws94{word-spacing:3.672000px;}
.ws95{word-spacing:3.744000px;}
.ws9c{word-spacing:3.816000px;}
.ws3f{word-spacing:4.032000px;}
.ws89{word-spacing:4.104000px;}
.ws23{word-spacing:4.248000px;}
.ws3e{word-spacing:4.392000px;}
.ws53{word-spacing:4.752000px;}
.ws8b{word-spacing:4.896000px;}
.ws35{word-spacing:4.968000px;}
.ws6c{word-spacing:5.112000px;}
.ws7b{word-spacing:5.544000px;}
.ws52{word-spacing:5.688000px;}
.wsac{word-spacing:5.760000px;}
.wsa1{word-spacing:5.832000px;}
.ws6a{word-spacing:5.904000px;}
.ws85{word-spacing:6.264000px;}
.ws25{word-spacing:6.408000px;}
.ws86{word-spacing:6.480000px;}
.ws36{word-spacing:7.128000px;}
.ws38{word-spacing:7.272000px;}
.ws8c{word-spacing:7.632000px;}
.ws56{word-spacing:7.704000px;}
.ws37{word-spacing:7.848000px;}
.ws7d{word-spacing:7.992000px;}
.ws57{word-spacing:8.136000px;}
.ws81{word-spacing:8.424000px;}
.ws82{word-spacing:8.496000px;}
.ws80{word-spacing:8.568000px;}
.ws17{word-spacing:9.008640px;}
.ws7a{word-spacing:9.072000px;}
.ws97{word-spacing:9.144000px;}
.ws96{word-spacing:9.216000px;}
.ws16{word-spacing:9.273600px;}
.ws78{word-spacing:9.288000px;}
.ws79{word-spacing:9.432000px;}
.ws4b{word-spacing:9.864000px;}
.ws14{word-spacing:10.002240px;}
.ws4c{word-spacing:10.008000px;}
.ws15{word-spacing:10.134720px;}
.ws8a{word-spacing:10.224000px;}
.wsa0{word-spacing:10.512000px;}
.ws92{word-spacing:10.584000px;}
.ws93{word-spacing:10.728000px;}
.ws99{word-spacing:10.872000px;}
.ws9b{word-spacing:10.944000px;}
.ws46{word-spacing:11.304000px;}
.ws42{word-spacing:11.448000px;}
.ws41{word-spacing:11.520000px;}
.ws47{word-spacing:11.592000px;}
.ws9a{word-spacing:12.168000px;}
.wsa3{word-spacing:12.672000px;}
.ws24{word-spacing:12.888000px;}
.wsa5{word-spacing:13.032000px;}
.ws5a{word-spacing:13.392000px;}
.wsab{word-spacing:13.464000px;}
.ws33{word-spacing:13.608000px;}
.ws32{word-spacing:13.752000px;}
.wsa4{word-spacing:13.896000px;}
.ws59{word-spacing:14.112000px;}
.ws58{word-spacing:14.184000px;}
.ws49{word-spacing:14.328000px;}
.ws7c{word-spacing:14.472000px;}
.ws4f{word-spacing:14.616000px;}
.ws3a{word-spacing:14.976000px;}
.ws39{word-spacing:15.048000px;}
.ws4a{word-spacing:15.120000px;}
.ws6d{word-spacing:15.696000px;}
.ws4d{word-spacing:15.768000px;}
.ws51{word-spacing:15.840000px;}
.ws7f{word-spacing:15.912000px;}
.ws69{word-spacing:17.208000px;}
.ws98{word-spacing:17.352000px;}
.ws21{word-spacing:17.928000px;}
.ws22{word-spacing:18.072000px;}
.ws7e{word-spacing:18.432000px;}
.ws2a{word-spacing:18.648000px;}
.ws67{word-spacing:19.368000px;}
.wsad{word-spacing:20.592000px;}
.wsa6{word-spacing:20.808000px;}
.ws8f{word-spacing:22.104000px;}
.ws8d{word-spacing:22.248000px;}
.ws8e{word-spacing:22.392000px;}
.ws4e{word-spacing:22.752000px;}
.ws20{word-spacing:22.968000px;}
.ws1f{word-spacing:23.688000px;}
.ws62{word-spacing:24.408000px;}
.ws63{word-spacing:24.552000px;}
.wsaf{word-spacing:25.992000px;}
.ws64{word-spacing:26.352000px;}
.ws44{word-spacing:26.424000px;}
.ws45{word-spacing:26.568000px;}
.ws43{word-spacing:26.712000px;}
.wsa9{word-spacing:30.168000px;}
.wsaa{word-spacing:30.312000px;}
.wsb2{word-spacing:31.752000px;}
.wsae{word-spacing:32.328000px;}
.wsb1{word-spacing:33.768000px;}
.wsb0{word-spacing:33.912000px;}
._0{margin-left:-1.784880px;}
._1{width:1.254240px;}
._2{width:2.311920px;}
._5{width:3.331440px;}
._3{width:4.448880px;}
._d{width:5.862240px;}
._7{width:6.912000px;}
._4{width:8.553600px;}
._e{width:9.815040px;}
._10{width:10.872000px;}
._a{width:12.168000px;}
._6{width:13.464000px;}
._8{width:15.089760px;}
._9{width:16.128000px;}
._f{width:19.008000px;}
._c{width:23.942160px;}
._b{width:26.712000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:23.760000px;}
.fs1{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs5{font-size:66.000000px;}
.fs3{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y102{bottom:-30.778800px;}
.y101{bottom:-30.598800px;}
.y32{bottom:-24.780300px;}
.y31{bottom:-24.600300px;}
.y83{bottom:-17.278800px;}
.y82{bottom:-17.098800px;}
.yfb{bottom:-0.000300px;}
.y0{bottom:0.000000px;}
.yde{bottom:0.164700px;}
.ydb{bottom:0.179700px;}
.ydc{bottom:0.899700px;}
.y8c{bottom:3.959700px;}
.y8a{bottom:3.961200px;}
.y90{bottom:4.139700px;}
.yac{bottom:4.499700px;}
.y2e{bottom:21.400350px;}
.yf5{bottom:79.253700px;}
.yff{bottom:80.699700px;}
.y7f{bottom:87.353700px;}
.yce{bottom:91.255200px;}
.yf4{bottom:99.953700px;}
.ya2{bottom:100.075200px;}
.yba{bottom:102.595200px;}
.yfe{bottom:103.199700px;}
.y80{bottom:106.333500px;}
.y7e{bottom:108.089700px;}
.ycd{bottom:111.991200px;}
.y30{bottom:113.835000px;}
.y100{bottom:119.833500px;}
.yf3{bottom:120.689700px;}
.ya1{bottom:120.811200px;}
.yb9{bottom:123.331200px;}
.y7d{bottom:128.789700px;}
.yf2{bottom:141.389700px;}
.ye0{bottom:141.871200px;}
.yb8{bottom:144.031200px;}
.y7c{bottom:149.489700px;}
.ycc{bottom:149.791200px;}
.ya0{bottom:150.151200px;}
.yb7{bottom:164.731200px;}
.y7b{bottom:170.189700px;}
.ycb{bottom:172.471200px;}
.ydf{bottom:174.271200px;}
.yf1{bottom:179.364120px;}
.y9f{bottom:189.211200px;}
.y7a{bottom:190.889700px;}
.y5f{bottom:195.254700px;}
.yf0{bottom:196.649700px;}
.y12c{bottom:200.828700px;}
.yb6{bottom:202.711200px;}
.y2d{bottom:206.588700px;}
.y9e{bottom:209.911200px;}
.y5e{bottom:215.768700px;}
.y79{bottom:220.229700px;}
.y12b{bottom:221.564700px;}
.yea{bottom:223.469700px;}
.yeb{bottom:224.549700px;}
.ye9{bottom:224.729700px;}
.yb5{bottom:225.211200px;}
.yef{bottom:226.709700px;}
.y2c{bottom:227.324700px;}
.yed{bottom:227.789700px;}
.y9d{bottom:230.611200px;}
.y5d{bottom:236.660700px;}
.y12a{bottom:242.264700px;}
.y2b{bottom:248.024700px;}
.y9c{bottom:251.311200px;}
.y5c{bottom:257.540700px;}
.ye8{bottom:257.849700px;}
.y78{bottom:258.929700px;}
.yee{bottom:261.089700px;}
.yec{bottom:262.169700px;}
.y129{bottom:262.964700px;}
.y2a{bottom:268.724700px;}
.ydd{bottom:270.720000px;}
.y9b{bottom:272.011200px;}
.y5b{bottom:278.240700px;}
.y128{bottom:283.664700px;}
.y77{bottom:288.629700px;}
.y29{bottom:289.424700px;}
.y9a{bottom:292.711200px;}
.y5a{bottom:298.940700px;}
.y127{bottom:304.364700px;}
.y76{bottom:306.809700px;}
.y28{bottom:310.124700px;}
.y99{bottom:313.411200px;}
.y75{bottom:316.694700px;}
.y59{bottom:319.640700px;}
.y126{bottom:325.064700px;}
.y27{bottom:330.824700px;}
.y98{bottom:334.102200px;}
.y74{bottom:337.448700px;}
.y58{bottom:340.340700px;}
.y125{bottom:345.764700px;}
.y26{bottom:351.524700px;}
.yfd{bottom:354.374700px;}
.y97{bottom:354.856200px;}
.y73{bottom:358.148700px;}
.y57{bottom:361.040700px;}
.y124{bottom:366.464700px;}
.y25{bottom:372.224700px;}
.y96{bottom:375.556200px;}
.y72{bottom:378.848700px;}
.y56{bottom:381.740700px;}
.y123{bottom:387.164700px;}
.y24{bottom:392.924700px;}
.y95{bottom:396.256200px;}
.y71{bottom:399.548700px;}
.y55{bottom:402.440700px;}
.y122{bottom:407.864700px;}
.yca{bottom:409.390200px;}
.y70{bottom:420.248700px;}
.y23{bottom:422.264700px;}
.y54{bottom:423.140700px;}
.y121{bottom:428.564700px;}
.yc9{bottom:430.090200px;}
.y6f{bottom:440.948700px;}
.y53{bottom:443.840700px;}
.y120{bottom:449.264700px;}
.yc8{bottom:450.790200px;}
.y22{bottom:451.839060px;}
.y6e{bottom:461.648700px;}
.y52{bottom:464.594700px;}
.y11f{bottom:470.009700px;}
.yc7{bottom:471.490200px;}
.y21{bottom:479.924820px;}
.y6d{bottom:482.348700px;}
.y51{bottom:485.294700px;}
.y11e{bottom:490.709700px;}
.yfc{bottom:490.710000px;}
.yc6{bottom:492.190200px;}
.y20{bottom:498.819780px;}
.y6c{bottom:503.048700px;}
.y50{bottom:505.994700px;}
.yb4{bottom:511.276200px;}
.y11d{bottom:511.409700px;}
.yc5{bottom:512.890200px;}
.y1f{bottom:517.714740px;}
.y94{bottom:519.510000px;}
.y6b{bottom:523.748700px;}
.y4f{bottom:526.694700px;}
.yb3{bottom:531.976200px;}
.y11c{bottom:532.109700px;}
.yc4{bottom:533.590200px;}
.yda{bottom:535.710000px;}
.y93{bottom:539.310000px;}
.y6a{bottom:544.448700px;}
.y1e{bottom:545.800500px;}
.y4e{bottom:547.394700px;}
.yb2{bottom:552.676200px;}
.y11b{bottom:552.809700px;}
.yc3{bottom:554.290200px;}
.y92{bottom:558.930000px;}
.y1d{bottom:564.695460px;}
.y69{bottom:565.148700px;}
.y4d{bottom:568.094700px;}
.ye7{bottom:572.744700px;}
.y11a{bottom:573.509700px;}
.yc2{bottom:574.990200px;}
.y91{bottom:578.730000px;}
.y1c{bottom:583.772580px;}
.y68{bottom:585.884700px;}
.y4c{bottom:588.794700px;}
.yb1{bottom:590.686200px;}
.ye6{bottom:593.444700px;}
.y119{bottom:594.209700px;}
.yc1{bottom:595.726200px;}
.y8f{bottom:598.350000px;}
.y1b{bottom:602.849700px;}
.y67{bottom:606.584700px;}
.y4b{bottom:609.494700px;}
.y88{bottom:612.466200px;}
.ye5{bottom:614.144700px;}
.y118{bottom:614.909700px;}
.yc0{bottom:616.426200px;}
.y8e{bottom:618.150000px;}
.yae{bottom:618.586200px;}
.ya9{bottom:618.766200px;}
.yb0{bottom:619.666200px;}
.y1a{bottom:623.909700px;}
.y4a{bottom:630.194700px;}
.ye4{bottom:634.844700px;}
.ybf{bottom:637.126200px;}
.y8d{bottom:637.948500px;}
.y87{bottom:639.466200px;}
.y117{bottom:644.243700px;}
.y66{bottom:644.379120px;}
.y49{bottom:650.894700px;}
.ya8{bottom:651.706200px;}
.yaa{bottom:651.886200px;}
.yad{bottom:652.786200px;}
.yaf{bottom:653.866200px;}
.ye3{bottom:655.544700px;}
.y8b{bottom:657.570000px;}
.ybe{bottom:657.826200px;}
.y86{bottom:660.166200px;}
.y65{bottom:661.664700px;}
.y19{bottom:662.603700px;}
.y48{bottom:671.594700px;}
.y89{bottom:677.368500px;}
.ybd{bottom:678.526200px;}
.y18{bottom:683.339700px;}
.y64{bottom:684.155700px;}
.yd9{bottom:689.497200px;}
.y47{bottom:692.330700px;}
.ye2{bottom:693.344700px;}
.y85{bottom:698.146200px;}
.y116{bottom:704.039700px;}
.yd8{bottom:710.197200px;}
.y46{bottom:713.030700px;}
.ye1{bottom:715.844700px;}
.ybc{bottom:716.326200px;}
.yab{bottom:719.520000px;}
.y84{bottom:720.646200px;}
.y17{bottom:721.512660px;}
.y115{bottom:724.739700px;}
.yd7{bottom:730.897200px;}
.y45{bottom:733.730700px;}
.yfa{bottom:734.100000px;}
.ybb{bottom:738.826200px;}
.y16{bottom:740.407620px;}
.y114{bottom:745.439700px;}
.yd6{bottom:751.597200px;}
.y44{bottom:754.430700px;}
.y15{bottom:759.484740px;}
.y113{bottom:766.139700px;}
.yd5{bottom:772.297200px;}
.y43{bottom:775.130700px;}
.y14{bottom:778.379700px;}
.y112{bottom:786.839700px;}
.yd4{bottom:792.997200px;}
.y42{bottom:795.830700px;}
.y13{bottom:806.099700px;}
.y111{bottom:807.539700px;}
.yd3{bottom:813.751200px;}
.y41{bottom:816.530700px;}
.y12{bottom:818.175540px;}
.y110{bottom:828.239700px;}
.yd2{bottom:834.271200px;}
.y11{bottom:837.070500px;}
.y40{bottom:837.230700px;}
.y10f{bottom:848.939700px;}
.yd1{bottom:854.971200px;}
.y10{bottom:855.965460px;}
.y3f{bottom:857.930700px;}
.yf9{bottom:868.169700px;}
.y10e{bottom:869.639700px;}
.yf{bottom:875.042580px;}
.yd0{bottom:875.671200px;}
.y3e{bottom:878.630700px;}
.yf8{bottom:888.869700px;}
.y10d{bottom:890.330700px;}
.ycf{bottom:896.371200px;}
.y3d{bottom:899.330700px;}
.ye{bottom:902.399700px;}
.yf7{bottom:909.569700px;}
.y10c{bottom:911.030700px;}
.ya7{bottom:917.071200px;}
.y3c{bottom:920.084700px;}
.yf6{bottom:930.269700px;}
.y10b{bottom:931.604700px;}
.yd{bottom:935.204700px;}
.ya6{bottom:937.771200px;}
.y3b{bottom:940.604700px;}
.y63{bottom:950.969700px;}
.y10a{bottom:952.304700px;}
.ya5{bottom:958.471200px;}
.y3a{bottom:961.304700px;}
.y62{bottom:971.669700px;}
.y109{bottom:973.004700px;}
.ya4{bottom:979.171200px;}
.y39{bottom:982.004700px;}
.y61{bottom:992.369700px;}
.y108{bottom:993.704700px;}
.yc{bottom:995.700540px;}
.ya3{bottom:999.871200px;}
.y38{bottom:1002.704700px;}
.y107{bottom:1014.404700px;}
.y37{bottom:1023.404700px;}
.y106{bottom:1035.104700px;}
.yb{bottom:1037.631000px;}
.y36{bottom:1044.104700px;}
.y60{bottom:1050.359700px;}
.y105{bottom:1055.804700px;}
.y81{bottom:1057.861200px;}
.ya{bottom:1061.744700px;}
.y35{bottom:1064.804700px;}
.y104{bottom:1076.504700px;}
.y9{bottom:1084.258680px;}
.y34{bottom:1085.504700px;}
.y8{bottom:1097.934720px;}
.y103{bottom:1105.844700px;}
.y33{bottom:1106.204700px;}
.y7{bottom:1111.791660px;}
.y6{bottom:1125.648600px;}
.y5{bottom:1139.324640px;}
.y4{bottom:1153.217760px;}
.y2f{bottom:1164.194700px;}
.y3{bottom:1167.074700px;}
.y2{bottom:1215.254100px;}
.y1{bottom:1236.854250px;}
.h1d{height:-14.580000px;}
.he{height:-8.581500px;}
.h12{height:-1.080000px;}
.h10{height:16.509023px;}
.h14{height:18.885000px;}
.h13{height:18.931500px;}
.h15{height:19.065000px;}
.h8{height:33.047227px;}
.h4{height:33.518320px;}
.hc{height:41.522695px;}
.h7{height:46.025156px;}
.hb{height:49.500000px;}
.h3{height:50.027344px;}
.ha{height:50.051344px;}
.h16{height:50.063344px;}
.hf{height:50.123344px;}
.h1f{height:59.189062px;}
.h1e{height:60.187500px;}
.h2{height:63.175781px;}
.h9{height:64.160156px;}
.h5{height:75.067383px;}
.h6{height:100.160156px;}
.h1a{height:243.388500px;}
.h1b{height:243.390000px;}
.h18{height:255.630000px;}
.h19{height:264.975000px;}
.h17{height:299.368500px;}
.h1c{height:1143.000000px;}
.hd{height:1149.000000px;}
.h11{height:1156.500000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:9.000000px;}
.wb{width:18.000000px;}
.w8{width:120.411000px;}
.w7{width:122.436000px;}
.w6{width:128.556000px;}
.w5{width:138.225000px;}
.w4{width:255.120000px;}
.w9{width:348.150000px;}
.wa{width:348.375000px;}
.w2{width:892.912500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x29{left:8.985000px;}
.x25{left:17.085000px;}
.x28{left:19.425000px;}
.x24{left:21.405000px;}
.x21{left:22.665000px;}
.x27{left:23.745000px;}
.x1f{left:27.165000px;}
.x1c{left:31.305000px;}
.x1e{left:47.865000px;}
.x20{left:52.185000px;}
.x23{left:54.165000px;}
.x1{left:56.586600px;}
.x26{left:60.645000px;}
.x22{left:73.650000px;}
.x3a{left:98.316000px;}
.xd{left:106.419360px;}
.x42{left:109.116000px;}
.x2b{left:112.356000px;}
.x17{left:115.596000px;}
.x12{left:127.656000px;}
.x8{left:133.056000px;}
.x19{left:137.556000px;}
.x6{left:141.876000px;}
.x52{left:144.756000px;}
.x36{left:190.650000px;}
.x2a{left:208.110000px;}
.x41{left:210.990000px;}
.x9{left:226.650000px;}
.x2c{left:229.530000px;}
.x43{left:247.539000px;}
.x1b{left:249.885000px;}
.x4e{left:252.210000px;}
.x3e{left:255.990000px;}
.x14{left:273.630000px;}
.x2{left:277.590000px;}
.xe{left:280.830000px;}
.x39{left:284.610000px;}
.x4b{left:293.105340px;}
.x18{left:294.905880px;}
.x10{left:298.881480px;}
.xb{left:307.524000px;}
.x1a{left:311.115000px;}
.x4d{left:315.219000px;}
.x4c{left:316.479000px;}
.xc{left:319.761840px;}
.x3c{left:322.815000px;}
.x3b{left:323.859000px;}
.x50{left:326.595000px;}
.x40{left:330.375000px;}
.x11{left:334.353000px;}
.xa{left:337.762560px;}
.x2e{left:358.095000px;}
.xf{left:368.715000px;}
.x45{left:370.155000px;}
.x13{left:425.477250px;}
.x51{left:437.655000px;}
.x15{left:442.155000px;}
.x7{left:446.656320px;}
.x44{left:458.535000px;}
.x2d{left:464.115000px;}
.x30{left:480.540000px;}
.x47{left:491.865000px;}
.x1d{left:505.020000px;}
.x4{left:510.227400px;}
.x46{left:580.245000px;}
.x2f{left:583.305000px;}
.x4f{left:591.765000px;}
.x49{left:612.834000px;}
.x32{left:624.714000px;}
.x3f{left:631.185000px;}
.x3{left:638.208120px;}
.x48{left:700.530000px;}
.x31{left:705.210000px;}
.x16{left:708.984000px;}
.x4a{left:731.850000px;}
.x34{left:738.150000px;}
.x35{left:756.690000px;}
.x3d{left:770.010000px;}
.x37{left:775.410000px;}
.x38{left:784.050000px;}
.x5{left:786.932040px;}
.x33{left:819.330000px;}
@media print{
.v2{vertical-align:-29.440000pt;}
.v3{vertical-align:-8.234667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:32.000000pt;}
.ls4d{letter-spacing:-1.344000pt;}
.ls43{letter-spacing:-1.280000pt;}
.ls19{letter-spacing:-1.000960pt;}
.ls14{letter-spacing:-0.900480pt;}
.ls29{letter-spacing:-0.896000pt;}
.ls4e{letter-spacing:-0.832000pt;}
.ls17{letter-spacing:-0.765440pt;}
.ls18{letter-spacing:-0.647680pt;}
.ls27{letter-spacing:-0.640000pt;}
.ls13{letter-spacing:-0.471680pt;}
.ls32{letter-spacing:-0.448000pt;}
.ls1a{letter-spacing:-0.412160pt;}
.ls30{letter-spacing:-0.384000pt;}
.ls12{letter-spacing:-0.257280pt;}
.ls1b{letter-spacing:-0.256000pt;}
.ls2b{letter-spacing:-0.192000pt;}
.ls2f{letter-spacing:-0.159360pt;}
.ls16{letter-spacing:-0.128000pt;}
.ls44{letter-spacing:-0.064000pt;}
.ls2e{letter-spacing:-0.053120pt;}
.ls10{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.064000pt;}
.ls3a{letter-spacing:0.106240pt;}
.ls5{letter-spacing:0.117760pt;}
.lse{letter-spacing:0.128000pt;}
.ls2c{letter-spacing:0.159360pt;}
.ls3{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.171520pt;}
.ls3e{letter-spacing:0.176640pt;}
.ls25{letter-spacing:0.181333pt;}
.ls31{letter-spacing:0.192000pt;}
.ls15{letter-spacing:0.224640pt;}
.ls36{letter-spacing:0.232960pt;}
.ls6{letter-spacing:0.235520pt;}
.lsb{letter-spacing:0.256000pt;}
.ls11{letter-spacing:0.257280pt;}
.ls34{letter-spacing:0.318720pt;}
.ls24{letter-spacing:0.320000pt;}
.ls2a{letter-spacing:0.343040pt;}
.ls45{letter-spacing:0.448000pt;}
.ls3c{letter-spacing:0.471040pt;}
.ls1{letter-spacing:0.480000pt;}
.ls3b{letter-spacing:0.588800pt;}
.ls26{letter-spacing:0.640000pt;}
.ls8{letter-spacing:0.647680pt;}
.ls4c{letter-spacing:0.704000pt;}
.ls3d{letter-spacing:0.706560pt;}
.ls28{letter-spacing:0.768000pt;}
.ls35{letter-spacing:1.236480pt;}
.ls20{letter-spacing:1.280000pt;}
.ls37{letter-spacing:1.295360pt;}
.ls41{letter-spacing:1.408000pt;}
.lsc{letter-spacing:1.920000pt;}
.ls2{letter-spacing:2.560000pt;}
.ls2d{letter-spacing:3.200000pt;}
.ls21{letter-spacing:3.840000pt;}
.ls1d{letter-spacing:4.480000pt;}
.ls22{letter-spacing:5.120000pt;}
.ls40{letter-spacing:5.760000pt;}
.ls1e{letter-spacing:6.400000pt;}
.ls7{letter-spacing:8.302080pt;}
.ls39{letter-spacing:8.320000pt;}
.ls42{letter-spacing:8.960000pt;}
.ls4{letter-spacing:9.600000pt;}
.ls23{letter-spacing:10.240000pt;}
.ls48{letter-spacing:10.513920pt;}
.ls47{letter-spacing:11.520000pt;}
.ls1c{letter-spacing:12.160000pt;}
.ls38{letter-spacing:12.800000pt;}
.ls3f{letter-spacing:14.080000pt;}
.ls1f{letter-spacing:14.208000pt;}
.lsf{letter-spacing:16.640000pt;}
.ls46{letter-spacing:19.840000pt;}
.lsa{letter-spacing:21.120000pt;}
.ls9{letter-spacing:21.760000pt;}
.ls4f{letter-spacing:22.033920pt;}
.ls49{letter-spacing:24.960000pt;}
.ls4a{letter-spacing:26.880000pt;}
.ls4b{letter-spacing:28.800000pt;}
.ls33{letter-spacing:1740.405333pt;}
.ws2e{word-spacing:-64.000000pt;}
.ws9f{word-spacing:-16.704000pt;}
.wsa{word-spacing:-16.128000pt;}
.ws72{word-spacing:-16.015360pt;}
.ws1{word-spacing:-16.000000pt;}
.ws71{word-spacing:-15.956480pt;}
.ws83{word-spacing:-15.936000pt;}
.ws9{word-spacing:-15.872000pt;}
.ws73{word-spacing:-15.808000pt;}
.ws2b{word-spacing:-15.744000pt;}
.ws5e{word-spacing:-15.616000pt;}
.ws2c{word-spacing:-15.360000pt;}
.ws2d{word-spacing:-15.104000pt;}
.ws4{word-spacing:-14.955520pt;}
.ws7{word-spacing:-14.837760pt;}
.ws9e{word-spacing:-14.720000pt;}
.ws8{word-spacing:-14.072320pt;}
.ws5{word-spacing:-13.954560pt;}
.ws6{word-spacing:-13.719040pt;}
.ws70{word-spacing:-13.386240pt;}
.ws5d{word-spacing:-13.280000pt;}
.ws5c{word-spacing:-13.120640pt;}
.ws2f{word-spacing:-11.063040pt;}
.ws3{word-spacing:-10.720000pt;}
.ws0{word-spacing:-10.248320pt;}
.ws50{word-spacing:-0.768000pt;}
.ws19{word-spacing:-0.647680pt;}
.ws48{word-spacing:-0.640000pt;}
.ws88{word-spacing:-0.448000pt;}
.ws9d{word-spacing:-0.318720pt;}
.ws10{word-spacing:-0.224640pt;}
.ws6b{word-spacing:-0.192000pt;}
.ws61{word-spacing:-0.159360pt;}
.wsc{word-spacing:-0.128640pt;}
.ws76{word-spacing:-0.117760pt;}
.ws2{word-spacing:-0.064000pt;}
.wsb{word-spacing:0.000000pt;}
.ws5f{word-spacing:0.053120pt;}
.ws30{word-spacing:0.106240pt;}
.ws74{word-spacing:0.117760pt;}
.ws11{word-spacing:0.128000pt;}
.ws5b{word-spacing:0.192000pt;}
.ws60{word-spacing:0.212480pt;}
.ws26{word-spacing:0.256000pt;}
.ws1d{word-spacing:0.353280pt;}
.ws68{word-spacing:0.384000pt;}
.wsd{word-spacing:0.385920pt;}
.ws1b{word-spacing:0.412160pt;}
.ws6e{word-spacing:0.448000pt;}
.ws75{word-spacing:0.529920pt;}
.ws54{word-spacing:0.576000pt;}
.ws1e{word-spacing:0.588800pt;}
.wse{word-spacing:0.600320pt;}
.ws6f{word-spacing:0.640000pt;}
.ws1c{word-spacing:0.706560pt;}
.ws55{word-spacing:0.832000pt;}
.wsf{word-spacing:0.900480pt;}
.ws87{word-spacing:1.024000pt;}
.ws77{word-spacing:1.059840pt;}
.ws91{word-spacing:1.088000pt;}
.ws3b{word-spacing:1.152000pt;}
.ws3c{word-spacing:1.216000pt;}
.ws1a{word-spacing:1.236480pt;}
.wsa8{word-spacing:1.280000pt;}
.ws3d{word-spacing:1.344000pt;}
.ws29{word-spacing:1.728000pt;}
.ws65{word-spacing:1.792000pt;}
.ws27{word-spacing:1.856000pt;}
.wsa2{word-spacing:1.920000pt;}
.ws28{word-spacing:1.984000pt;}
.ws84{word-spacing:2.048000pt;}
.wsa7{word-spacing:2.112000pt;}
.ws13{word-spacing:2.304000pt;}
.ws31{word-spacing:2.368000pt;}
.ws12{word-spacing:2.496000pt;}
.ws90{word-spacing:2.624000pt;}
.ws66{word-spacing:2.944000pt;}
.ws40{word-spacing:3.008000pt;}
.ws18{word-spacing:3.120640pt;}
.ws34{word-spacing:3.136000pt;}
.ws94{word-spacing:3.264000pt;}
.ws95{word-spacing:3.328000pt;}
.ws9c{word-spacing:3.392000pt;}
.ws3f{word-spacing:3.584000pt;}
.ws89{word-spacing:3.648000pt;}
.ws23{word-spacing:3.776000pt;}
.ws3e{word-spacing:3.904000pt;}
.ws53{word-spacing:4.224000pt;}
.ws8b{word-spacing:4.352000pt;}
.ws35{word-spacing:4.416000pt;}
.ws6c{word-spacing:4.544000pt;}
.ws7b{word-spacing:4.928000pt;}
.ws52{word-spacing:5.056000pt;}
.wsac{word-spacing:5.120000pt;}
.wsa1{word-spacing:5.184000pt;}
.ws6a{word-spacing:5.248000pt;}
.ws85{word-spacing:5.568000pt;}
.ws25{word-spacing:5.696000pt;}
.ws86{word-spacing:5.760000pt;}
.ws36{word-spacing:6.336000pt;}
.ws38{word-spacing:6.464000pt;}
.ws8c{word-spacing:6.784000pt;}
.ws56{word-spacing:6.848000pt;}
.ws37{word-spacing:6.976000pt;}
.ws7d{word-spacing:7.104000pt;}
.ws57{word-spacing:7.232000pt;}
.ws81{word-spacing:7.488000pt;}
.ws82{word-spacing:7.552000pt;}
.ws80{word-spacing:7.616000pt;}
.ws17{word-spacing:8.007680pt;}
.ws7a{word-spacing:8.064000pt;}
.ws97{word-spacing:8.128000pt;}
.ws96{word-spacing:8.192000pt;}
.ws16{word-spacing:8.243200pt;}
.ws78{word-spacing:8.256000pt;}
.ws79{word-spacing:8.384000pt;}
.ws4b{word-spacing:8.768000pt;}
.ws14{word-spacing:8.890880pt;}
.ws4c{word-spacing:8.896000pt;}
.ws15{word-spacing:9.008640pt;}
.ws8a{word-spacing:9.088000pt;}
.wsa0{word-spacing:9.344000pt;}
.ws92{word-spacing:9.408000pt;}
.ws93{word-spacing:9.536000pt;}
.ws99{word-spacing:9.664000pt;}
.ws9b{word-spacing:9.728000pt;}
.ws46{word-spacing:10.048000pt;}
.ws42{word-spacing:10.176000pt;}
.ws41{word-spacing:10.240000pt;}
.ws47{word-spacing:10.304000pt;}
.ws9a{word-spacing:10.816000pt;}
.wsa3{word-spacing:11.264000pt;}
.ws24{word-spacing:11.456000pt;}
.wsa5{word-spacing:11.584000pt;}
.ws5a{word-spacing:11.904000pt;}
.wsab{word-spacing:11.968000pt;}
.ws33{word-spacing:12.096000pt;}
.ws32{word-spacing:12.224000pt;}
.wsa4{word-spacing:12.352000pt;}
.ws59{word-spacing:12.544000pt;}
.ws58{word-spacing:12.608000pt;}
.ws49{word-spacing:12.736000pt;}
.ws7c{word-spacing:12.864000pt;}
.ws4f{word-spacing:12.992000pt;}
.ws3a{word-spacing:13.312000pt;}
.ws39{word-spacing:13.376000pt;}
.ws4a{word-spacing:13.440000pt;}
.ws6d{word-spacing:13.952000pt;}
.ws4d{word-spacing:14.016000pt;}
.ws51{word-spacing:14.080000pt;}
.ws7f{word-spacing:14.144000pt;}
.ws69{word-spacing:15.296000pt;}
.ws98{word-spacing:15.424000pt;}
.ws21{word-spacing:15.936000pt;}
.ws22{word-spacing:16.064000pt;}
.ws7e{word-spacing:16.384000pt;}
.ws2a{word-spacing:16.576000pt;}
.ws67{word-spacing:17.216000pt;}
.wsad{word-spacing:18.304000pt;}
.wsa6{word-spacing:18.496000pt;}
.ws8f{word-spacing:19.648000pt;}
.ws8d{word-spacing:19.776000pt;}
.ws8e{word-spacing:19.904000pt;}
.ws4e{word-spacing:20.224000pt;}
.ws20{word-spacing:20.416000pt;}
.ws1f{word-spacing:21.056000pt;}
.ws62{word-spacing:21.696000pt;}
.ws63{word-spacing:21.824000pt;}
.wsaf{word-spacing:23.104000pt;}
.ws64{word-spacing:23.424000pt;}
.ws44{word-spacing:23.488000pt;}
.ws45{word-spacing:23.616000pt;}
.ws43{word-spacing:23.744000pt;}
.wsa9{word-spacing:26.816000pt;}
.wsaa{word-spacing:26.944000pt;}
.wsb2{word-spacing:28.224000pt;}
.wsae{word-spacing:28.736000pt;}
.wsb1{word-spacing:30.016000pt;}
.wsb0{word-spacing:30.144000pt;}
._0{margin-left:-1.586560pt;}
._1{width:1.114880pt;}
._2{width:2.055040pt;}
._5{width:2.961280pt;}
._3{width:3.954560pt;}
._d{width:5.210880pt;}
._7{width:6.144000pt;}
._4{width:7.603200pt;}
._e{width:8.724480pt;}
._10{width:9.664000pt;}
._a{width:10.816000pt;}
._6{width:11.968000pt;}
._8{width:13.413120pt;}
._9{width:14.336000pt;}
._f{width:16.896000pt;}
._c{width:21.281920pt;}
._b{width:23.744000pt;}
.fs6{font-size:21.120000pt;}
.fs1{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs5{font-size:58.666667pt;}
.fs3{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y102{bottom:-27.358933pt;}
.y101{bottom:-27.198933pt;}
.y32{bottom:-22.026933pt;}
.y31{bottom:-21.866933pt;}
.y83{bottom:-15.358933pt;}
.y82{bottom:-15.198933pt;}
.yfb{bottom:-0.000267pt;}
.y0{bottom:0.000000pt;}
.yde{bottom:0.146400pt;}
.ydb{bottom:0.159733pt;}
.ydc{bottom:0.799733pt;}
.y8c{bottom:3.519733pt;}
.y8a{bottom:3.521067pt;}
.y90{bottom:3.679733pt;}
.yac{bottom:3.999733pt;}
.y2e{bottom:19.022533pt;}
.yf5{bottom:70.447733pt;}
.yff{bottom:71.733067pt;}
.y7f{bottom:77.647733pt;}
.yce{bottom:81.115733pt;}
.yf4{bottom:88.847733pt;}
.ya2{bottom:88.955733pt;}
.yba{bottom:91.195733pt;}
.yfe{bottom:91.733067pt;}
.y80{bottom:94.518667pt;}
.y7e{bottom:96.079733pt;}
.ycd{bottom:99.547733pt;}
.y30{bottom:101.186667pt;}
.y100{bottom:106.518667pt;}
.yf3{bottom:107.279733pt;}
.ya1{bottom:107.387733pt;}
.yb9{bottom:109.627733pt;}
.y7d{bottom:114.479733pt;}
.yf2{bottom:125.679733pt;}
.ye0{bottom:126.107733pt;}
.yb8{bottom:128.027733pt;}
.y7c{bottom:132.879733pt;}
.ycc{bottom:133.147733pt;}
.ya0{bottom:133.467733pt;}
.yb7{bottom:146.427733pt;}
.y7b{bottom:151.279733pt;}
.ycb{bottom:153.307733pt;}
.ydf{bottom:154.907733pt;}
.yf1{bottom:159.434773pt;}
.y9f{bottom:168.187733pt;}
.y7a{bottom:169.679733pt;}
.y5f{bottom:173.559733pt;}
.yf0{bottom:174.799733pt;}
.y12c{bottom:178.514400pt;}
.yb6{bottom:180.187733pt;}
.y2d{bottom:183.634400pt;}
.y9e{bottom:186.587733pt;}
.y5e{bottom:191.794400pt;}
.y79{bottom:195.759733pt;}
.y12b{bottom:196.946400pt;}
.yea{bottom:198.639733pt;}
.yeb{bottom:199.599733pt;}
.ye9{bottom:199.759733pt;}
.yb5{bottom:200.187733pt;}
.yef{bottom:201.519733pt;}
.y2c{bottom:202.066400pt;}
.yed{bottom:202.479733pt;}
.y9d{bottom:204.987733pt;}
.y5d{bottom:210.365067pt;}
.y12a{bottom:215.346400pt;}
.y2b{bottom:220.466400pt;}
.y9c{bottom:223.387733pt;}
.y5c{bottom:228.925067pt;}
.ye8{bottom:229.199733pt;}
.y78{bottom:230.159733pt;}
.yee{bottom:232.079733pt;}
.yec{bottom:233.039733pt;}
.y129{bottom:233.746400pt;}
.y2a{bottom:238.866400pt;}
.ydd{bottom:240.640000pt;}
.y9b{bottom:241.787733pt;}
.y5b{bottom:247.325067pt;}
.y128{bottom:252.146400pt;}
.y77{bottom:256.559733pt;}
.y29{bottom:257.266400pt;}
.y9a{bottom:260.187733pt;}
.y5a{bottom:265.725067pt;}
.y127{bottom:270.546400pt;}
.y76{bottom:272.719733pt;}
.y28{bottom:275.666400pt;}
.y99{bottom:278.587733pt;}
.y75{bottom:281.506400pt;}
.y59{bottom:284.125067pt;}
.y126{bottom:288.946400pt;}
.y27{bottom:294.066400pt;}
.y98{bottom:296.979733pt;}
.y74{bottom:299.954400pt;}
.y58{bottom:302.525067pt;}
.y125{bottom:307.346400pt;}
.y26{bottom:312.466400pt;}
.yfd{bottom:314.999733pt;}
.y97{bottom:315.427733pt;}
.y73{bottom:318.354400pt;}
.y57{bottom:320.925067pt;}
.y124{bottom:325.746400pt;}
.y25{bottom:330.866400pt;}
.y96{bottom:333.827733pt;}
.y72{bottom:336.754400pt;}
.y56{bottom:339.325067pt;}
.y123{bottom:344.146400pt;}
.y24{bottom:349.266400pt;}
.y95{bottom:352.227733pt;}
.y71{bottom:355.154400pt;}
.y55{bottom:357.725067pt;}
.y122{bottom:362.546400pt;}
.yca{bottom:363.902400pt;}
.y70{bottom:373.554400pt;}
.y23{bottom:375.346400pt;}
.y54{bottom:376.125067pt;}
.y121{bottom:380.946400pt;}
.yc9{bottom:382.302400pt;}
.y6f{bottom:391.954400pt;}
.y53{bottom:394.525067pt;}
.y120{bottom:399.346400pt;}
.yc8{bottom:400.702400pt;}
.y22{bottom:401.634720pt;}
.y6e{bottom:410.354400pt;}
.y52{bottom:412.973067pt;}
.y11f{bottom:417.786400pt;}
.yc7{bottom:419.102400pt;}
.y21{bottom:426.599840pt;}
.y6d{bottom:428.754400pt;}
.y51{bottom:431.373067pt;}
.y11e{bottom:436.186400pt;}
.yfc{bottom:436.186667pt;}
.yc6{bottom:437.502400pt;}
.y20{bottom:443.395360pt;}
.y6c{bottom:447.154400pt;}
.y50{bottom:449.773067pt;}
.yb4{bottom:454.467733pt;}
.y11d{bottom:454.586400pt;}
.yc5{bottom:455.902400pt;}
.y1f{bottom:460.190880pt;}
.y94{bottom:461.786667pt;}
.y6b{bottom:465.554400pt;}
.y4f{bottom:468.173067pt;}
.yb3{bottom:472.867733pt;}
.y11c{bottom:472.986400pt;}
.yc4{bottom:474.302400pt;}
.yda{bottom:476.186667pt;}
.y93{bottom:479.386667pt;}
.y6a{bottom:483.954400pt;}
.y1e{bottom:485.156000pt;}
.y4e{bottom:486.573067pt;}
.yb2{bottom:491.267733pt;}
.y11b{bottom:491.386400pt;}
.yc3{bottom:492.702400pt;}
.y92{bottom:496.826667pt;}
.y1d{bottom:501.951520pt;}
.y69{bottom:502.354400pt;}
.y4d{bottom:504.973067pt;}
.ye7{bottom:509.106400pt;}
.y11a{bottom:509.786400pt;}
.yc2{bottom:511.102400pt;}
.y91{bottom:514.426667pt;}
.y1c{bottom:518.908960pt;}
.y68{bottom:520.786400pt;}
.y4c{bottom:523.373067pt;}
.yb1{bottom:525.054400pt;}
.ye6{bottom:527.506400pt;}
.y119{bottom:528.186400pt;}
.yc1{bottom:529.534400pt;}
.y8f{bottom:531.866667pt;}
.y1b{bottom:535.866400pt;}
.y67{bottom:539.186400pt;}
.y4b{bottom:541.773067pt;}
.y88{bottom:544.414400pt;}
.ye5{bottom:545.906400pt;}
.y118{bottom:546.586400pt;}
.yc0{bottom:547.934400pt;}
.y8e{bottom:549.466667pt;}
.yae{bottom:549.854400pt;}
.ya9{bottom:550.014400pt;}
.yb0{bottom:550.814400pt;}
.y1a{bottom:554.586400pt;}
.y4a{bottom:560.173067pt;}
.ye4{bottom:564.306400pt;}
.ybf{bottom:566.334400pt;}
.y8d{bottom:567.065333pt;}
.y87{bottom:568.414400pt;}
.y117{bottom:572.661067pt;}
.y66{bottom:572.781440pt;}
.y49{bottom:578.573067pt;}
.ya8{bottom:579.294400pt;}
.yaa{bottom:579.454400pt;}
.yad{bottom:580.254400pt;}
.yaf{bottom:581.214400pt;}
.ye3{bottom:582.706400pt;}
.y8b{bottom:584.506667pt;}
.ybe{bottom:584.734400pt;}
.y86{bottom:586.814400pt;}
.y65{bottom:588.146400pt;}
.y19{bottom:588.981067pt;}
.y48{bottom:596.973067pt;}
.y89{bottom:602.105333pt;}
.ybd{bottom:603.134400pt;}
.y18{bottom:607.413067pt;}
.y64{bottom:608.138400pt;}
.yd9{bottom:612.886400pt;}
.y47{bottom:615.405067pt;}
.ye2{bottom:616.306400pt;}
.y85{bottom:620.574400pt;}
.y116{bottom:625.813067pt;}
.yd8{bottom:631.286400pt;}
.y46{bottom:633.805067pt;}
.ye1{bottom:636.306400pt;}
.ybc{bottom:636.734400pt;}
.yab{bottom:639.573333pt;}
.y84{bottom:640.574400pt;}
.y17{bottom:641.344587pt;}
.y115{bottom:644.213067pt;}
.yd7{bottom:649.686400pt;}
.y45{bottom:652.205067pt;}
.yfa{bottom:652.533333pt;}
.ybb{bottom:656.734400pt;}
.y16{bottom:658.140107pt;}
.y114{bottom:662.613067pt;}
.yd6{bottom:668.086400pt;}
.y44{bottom:670.605067pt;}
.y15{bottom:675.097547pt;}
.y113{bottom:681.013067pt;}
.yd5{bottom:686.486400pt;}
.y43{bottom:689.005067pt;}
.y14{bottom:691.893067pt;}
.y112{bottom:699.413067pt;}
.yd4{bottom:704.886400pt;}
.y42{bottom:707.405067pt;}
.y13{bottom:716.533067pt;}
.y111{bottom:717.813067pt;}
.yd3{bottom:723.334400pt;}
.y41{bottom:725.805067pt;}
.y12{bottom:727.267147pt;}
.y110{bottom:736.213067pt;}
.yd2{bottom:741.574400pt;}
.y11{bottom:744.062667pt;}
.y40{bottom:744.205067pt;}
.y10f{bottom:754.613067pt;}
.yd1{bottom:759.974400pt;}
.y10{bottom:760.858187pt;}
.y3f{bottom:762.605067pt;}
.yf9{bottom:771.706400pt;}
.y10e{bottom:773.013067pt;}
.yf{bottom:777.815627pt;}
.yd0{bottom:778.374400pt;}
.y3e{bottom:781.005067pt;}
.yf8{bottom:790.106400pt;}
.y10d{bottom:791.405067pt;}
.ycf{bottom:796.774400pt;}
.y3d{bottom:799.405067pt;}
.ye{bottom:802.133067pt;}
.yf7{bottom:808.506400pt;}
.y10c{bottom:809.805067pt;}
.ya7{bottom:815.174400pt;}
.y3c{bottom:817.853067pt;}
.yf6{bottom:826.906400pt;}
.y10b{bottom:828.093067pt;}
.yd{bottom:831.293067pt;}
.ya6{bottom:833.574400pt;}
.y3b{bottom:836.093067pt;}
.y63{bottom:845.306400pt;}
.y10a{bottom:846.493067pt;}
.ya5{bottom:851.974400pt;}
.y3a{bottom:854.493067pt;}
.y62{bottom:863.706400pt;}
.y109{bottom:864.893067pt;}
.ya4{bottom:870.374400pt;}
.y39{bottom:872.893067pt;}
.y61{bottom:882.106400pt;}
.y108{bottom:883.293067pt;}
.yc{bottom:885.067147pt;}
.ya3{bottom:888.774400pt;}
.y38{bottom:891.293067pt;}
.y107{bottom:901.693067pt;}
.y37{bottom:909.693067pt;}
.y106{bottom:920.093067pt;}
.yb{bottom:922.338667pt;}
.y36{bottom:928.093067pt;}
.y60{bottom:933.653067pt;}
.y105{bottom:938.493067pt;}
.y81{bottom:940.321067pt;}
.ya{bottom:943.773067pt;}
.y35{bottom:946.493067pt;}
.y104{bottom:956.893067pt;}
.y9{bottom:963.785493pt;}
.y34{bottom:964.893067pt;}
.y8{bottom:975.941973pt;}
.y103{bottom:982.973067pt;}
.y33{bottom:983.293067pt;}
.y7{bottom:988.259253pt;}
.y6{bottom:1000.576533pt;}
.y5{bottom:1012.733013pt;}
.y4{bottom:1025.082453pt;}
.y2f{bottom:1034.839733pt;}
.y3{bottom:1037.399733pt;}
.y2{bottom:1080.225867pt;}
.y1{bottom:1099.426000pt;}
.h1d{height:-12.960000pt;}
.he{height:-7.628000pt;}
.h12{height:-0.960000pt;}
.h10{height:14.674687pt;}
.h14{height:16.786667pt;}
.h13{height:16.828000pt;}
.h15{height:16.946667pt;}
.h8{height:29.375312pt;}
.h4{height:29.794062pt;}
.hc{height:36.909063pt;}
.h7{height:40.911250pt;}
.hb{height:44.000000pt;}
.h3{height:44.468750pt;}
.ha{height:44.490083pt;}
.h16{height:44.500750pt;}
.hf{height:44.554083pt;}
.h1f{height:52.612500pt;}
.h1e{height:53.500000pt;}
.h2{height:56.156250pt;}
.h9{height:57.031250pt;}
.h5{height:66.726562pt;}
.h6{height:89.031250pt;}
.h1a{height:216.345333pt;}
.h1b{height:216.346667pt;}
.h18{height:227.226667pt;}
.h19{height:235.533333pt;}
.h17{height:266.105333pt;}
.h1c{height:1016.000000pt;}
.hd{height:1021.333333pt;}
.h11{height:1028.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:8.000000pt;}
.wb{width:16.000000pt;}
.w8{width:107.032000pt;}
.w7{width:108.832000pt;}
.w6{width:114.272000pt;}
.w5{width:122.866667pt;}
.w4{width:226.773333pt;}
.w9{width:309.466667pt;}
.wa{width:309.666667pt;}
.w2{width:793.700000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x29{left:7.986667pt;}
.x25{left:15.186667pt;}
.x28{left:17.266667pt;}
.x24{left:19.026667pt;}
.x21{left:20.146667pt;}
.x27{left:21.106667pt;}
.x1f{left:24.146667pt;}
.x1c{left:27.826667pt;}
.x1e{left:42.546667pt;}
.x20{left:46.386667pt;}
.x23{left:48.146667pt;}
.x1{left:50.299200pt;}
.x26{left:53.906667pt;}
.x22{left:65.466667pt;}
.x3a{left:87.392000pt;}
.xd{left:94.594987pt;}
.x42{left:96.992000pt;}
.x2b{left:99.872000pt;}
.x17{left:102.752000pt;}
.x12{left:113.472000pt;}
.x8{left:118.272000pt;}
.x19{left:122.272000pt;}
.x6{left:126.112000pt;}
.x52{left:128.672000pt;}
.x36{left:169.466667pt;}
.x2a{left:184.986667pt;}
.x41{left:187.546667pt;}
.x9{left:201.466667pt;}
.x2c{left:204.026667pt;}
.x43{left:220.034667pt;}
.x1b{left:222.120000pt;}
.x4e{left:224.186667pt;}
.x3e{left:227.546667pt;}
.x14{left:243.226667pt;}
.x2{left:246.746667pt;}
.xe{left:249.626667pt;}
.x39{left:252.986667pt;}
.x4b{left:260.538080pt;}
.x18{left:262.138560pt;}
.x10{left:265.672427pt;}
.xb{left:273.354667pt;}
.x1a{left:276.546667pt;}
.x4d{left:280.194667pt;}
.x4c{left:281.314667pt;}
.xc{left:284.232747pt;}
.x3c{left:286.946667pt;}
.x3b{left:287.874667pt;}
.x50{left:290.306667pt;}
.x40{left:293.666667pt;}
.x11{left:297.202667pt;}
.xa{left:300.233387pt;}
.x2e{left:318.306667pt;}
.xf{left:327.746667pt;}
.x45{left:329.026667pt;}
.x13{left:378.202000pt;}
.x51{left:389.026667pt;}
.x15{left:393.026667pt;}
.x7{left:397.027840pt;}
.x44{left:407.586667pt;}
.x2d{left:412.546667pt;}
.x30{left:427.146667pt;}
.x47{left:437.213333pt;}
.x1d{left:448.906667pt;}
.x4{left:453.535467pt;}
.x46{left:515.773333pt;}
.x2f{left:518.493333pt;}
.x4f{left:526.013333pt;}
.x49{left:544.741333pt;}
.x32{left:555.301333pt;}
.x3f{left:561.053333pt;}
.x3{left:567.296107pt;}
.x48{left:622.693333pt;}
.x31{left:626.853333pt;}
.x16{left:630.208000pt;}
.x4a{left:650.533333pt;}
.x34{left:656.133333pt;}
.x35{left:672.613333pt;}
.x3d{left:684.453333pt;}
.x37{left:689.253333pt;}
.x38{left:696.933333pt;}
.x5{left:699.495147pt;}
.x33{left:728.293333pt;}
}




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