
    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_98f0e4d401434b76b18d7c5e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_676d33b4a1f7d478d7bbf1e8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.657000;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_63e0aec3272f07f9bc4e15f6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_b57bc79408012f48022c5a0f.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_4fee40da61a0c233025f6f64.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_cd433399d130ac1167a00dc8.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_13a6b507c3336cae1946b883.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_0fdd47c73f1c10c5511f2ec7.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.665000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_cc7c799b8e2dc5595b8fec5b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.046000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_73258a780bb8059e6a38ce8a.woff2')format("woff");}.ffa{font-family:ffa;line-height:2.399000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_b89366e40a8c0fb10ef69737.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910000;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_cd9c45e7f3525d30e8f39d10.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.389000;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_410d60b0c498b9b8863a3211.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.737000;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_19301ee3e589076f687a1ed9.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.778000;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_ae962cc37021bec436618155.woff2')format("woff");}.fff{font-family:fff;line-height:0.684000;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_80394b2a83f034d2d25f4b62.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.683000;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_d76f0ed413727b638c32ec0a.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.840000;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);}
.vd{vertical-align:-16.878000px;}
.v1{vertical-align:-10.662000px;}
.ve{vertical-align:-8.964000px;}
.v10{vertical-align:-6.444000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:18.912000px;}
.vc{vertical-align:21.690000px;}
.v2{vertical-align:23.754000px;}
.v8{vertical-align:27.024000px;}
.v9{vertical-align:34.458000px;}
.v6{vertical-align:44.280000px;}
.v4{vertical-align:48.978000px;}
.v3{vertical-align:54.144000px;}
.vf{vertical-align:55.782000px;}
.v7{vertical-align:68.034000px;}
.vb{vertical-align:71.928000px;}
.v5{vertical-align:92.292000px;}
.ls2f{letter-spacing:0.000000px;}
.ls4e{letter-spacing:0.000526px;}
.ls2d{letter-spacing:0.001057px;}
.ls1a{letter-spacing:0.001593px;}
.ls4a{letter-spacing:0.001954px;}
.ls0{letter-spacing:0.002047px;}
.ls4{letter-spacing:0.002682px;}
.ls3c{letter-spacing:0.003570px;}
.ls8{letter-spacing:0.003739px;}
.ls2a{letter-spacing:0.005720px;}
.ls1c{letter-spacing:0.007593px;}
.ls1e{letter-spacing:0.008092px;}
.ls41{letter-spacing:0.010059px;}
.ls45{letter-spacing:0.011569px;}
.ls48{letter-spacing:0.013546px;}
.ls3f{letter-spacing:0.017042px;}
.ls30{letter-spacing:0.017915px;}
.ls44{letter-spacing:0.024905px;}
.ls27{letter-spacing:0.025043px;}
.ls10{letter-spacing:0.027658px;}
.ls49{letter-spacing:2.981971px;}
.ls2{letter-spacing:2.984915px;}
.ls2c{letter-spacing:2.987468px;}
.ls20{letter-spacing:2.987971px;}
.ls31{letter-spacing:2.988564px;}
.ls32{letter-spacing:2.990915px;}
.ls40{letter-spacing:2.991427px;}
.lsf{letter-spacing:3.010912px;}
.ls14{letter-spacing:3.665458px;}
.ls22{letter-spacing:3.861821px;}
.ls23{letter-spacing:3.927276px;}
.ls21{letter-spacing:6.860915px;}
.lsd{letter-spacing:7.171062px;}
.ls13{letter-spacing:7.172700px;}
.ls4b{letter-spacing:7.658188px;}
.ls1d{letter-spacing:10.160915px;}
.ls36{letter-spacing:12.043646px;}
.lsc{letter-spacing:13.255568px;}
.ls3e{letter-spacing:13.270183px;}
.ls47{letter-spacing:14.465467px;}
.lse{letter-spacing:14.530921px;}
.ls17{letter-spacing:14.596376px;}
.ls35{letter-spacing:15.026915px;}
.ls11{letter-spacing:15.054558px;}
.ls6{letter-spacing:15.316376px;}
.ls46{letter-spacing:17.468915px;}
.ls15{letter-spacing:17.528915px;}
.ls16{letter-spacing:17.534915px;}
.ls42{letter-spacing:17.672742px;}
.lsb{letter-spacing:18.162996px;}
.ls1{letter-spacing:18.196379px;}
.ls24{letter-spacing:19.472915px;}
.ls38{letter-spacing:20.029108px;}
.ls3b{letter-spacing:20.552744px;}
.ls1f{letter-spacing:21.167971px;}
.ls29{letter-spacing:21.207290px;}
.ls12{letter-spacing:21.711176px;}
.ls28{letter-spacing:21.796382px;}
.ls3a{letter-spacing:21.808809px;}
.ls26{letter-spacing:22.320019px;}
.ls5{letter-spacing:23.236383px;}
.ls37{letter-spacing:23.552915px;}
.ls43{letter-spacing:24.218202px;}
.ls4c{letter-spacing:24.807293px;}
.ls39{letter-spacing:25.527294px;}
.ls7{letter-spacing:26.027971px;}
.ls4f{letter-spacing:26.108915px;}
.ls19{letter-spacing:28.341842px;}
.ls50{letter-spacing:29.192752px;}
.ls18{letter-spacing:29.520025px;}
.ls2e{letter-spacing:29.954915px;}
.ls33{letter-spacing:29.960915px;}
.ls34{letter-spacing:31.941845px;}
.ls25{letter-spacing:32.727300px;}
.ls9{letter-spacing:34.088915px;}
.ls3d{letter-spacing:34.298210px;}
.lsa{letter-spacing:34.658915px;}
.ls3{letter-spacing:36.130939px;}
.ls4d{letter-spacing:58.700915px;}
.ls2b{letter-spacing:74.719409px;}
.ls1b{letter-spacing:93.215412px;}
.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;}
}
.ws9{word-spacing:-42.637126px;}
.ws10{word-spacing:-20.906199px;}
.ws8{word-spacing:-18.183288px;}
.ws34{word-spacing:-16.730196px;}
.ws42{word-spacing:-16.605662px;}
.ws57{word-spacing:-15.669831px;}
.ws3c{word-spacing:-14.111859px;}
.ws3d{word-spacing:-6.440733px;}
.ws3a{word-spacing:-3.652367px;}
.ws1b{word-spacing:-3.560730px;}
.ws66{word-spacing:-3.335478px;}
.ws64{word-spacing:-3.275703px;}
.ws1c{word-spacing:-3.063275px;}
.wsc0{word-spacing:-2.971639px;}
.ws8f{word-spacing:-2.932366px;}
.ws8e{word-spacing:-2.866911px;}
.wse{word-spacing:-2.801457px;}
.ws94{word-spacing:-2.775275px;}
.wsc1{word-spacing:-2.605093px;}
.ws4f{word-spacing:-2.212365px;}
.ws5e{word-spacing:-2.081456px;}
.wsb0{word-spacing:-2.016002px;}
.ws67{word-spacing:-1.989820px;}
.ws68{word-spacing:-1.754183px;}
.wsbe{word-spacing:-1.728001px;}
.ws2d{word-spacing:-1.688729px;}
.wsbf{word-spacing:-1.492365px;}
.ws7a{word-spacing:-1.230546px;}
.ws55{word-spacing:-1.034183px;}
.ws5b{word-spacing:-0.641455px;}
.ws2e{word-spacing:-0.052364px;}
.ws47{word-spacing:0.000000px;}
.ws29{word-spacing:0.013091px;}
.wsab{word-spacing:0.144000px;}
.wsb2{word-spacing:0.209455px;}
.ws6{word-spacing:0.274909px;}
.ws63{word-spacing:0.405819px;}
.wsc8{word-spacing:0.536728px;}
.ws96{word-spacing:0.667637px;}
.wsd1{word-spacing:0.994910px;}
.ws76{word-spacing:1.191274px;}
.ws84{word-spacing:1.518547px;}
.wsa6{word-spacing:1.911274px;}
.wsd{word-spacing:2.042184px;}
.ws2{word-spacing:2.199275px;}
.wsd0{word-spacing:2.304002px;}
.ws53{word-spacing:2.369457px;}
.ws36{word-spacing:2.631275px;}
.ws45{word-spacing:2.816633px;}
.ws49{word-spacing:3.299613px;}
.wsae{word-spacing:3.351276px;}
.ws7e{word-spacing:3.359389px;}
.ws3{word-spacing:3.508367px;}
.wsa{word-spacing:3.547639px;}
.wscd{word-spacing:3.560730px;}
.ws26{word-spacing:3.613094px;}
.ws89{word-spacing:3.678549px;}
.ws4c{word-spacing:3.744003px;}
.wsa1{word-spacing:3.809458px;}
.wsc9{word-spacing:3.822549px;}
.wsaf{word-spacing:3.901094px;}
.ws52{word-spacing:3.940367px;}
.ws22{word-spacing:4.005822px;}
.ws32{word-spacing:4.162913px;}
.wsf{word-spacing:4.202185px;}
.ws62{word-spacing:4.228367px;}
.wsa0{word-spacing:4.424731px;}
.wsad{word-spacing:4.464004px;}
.ws1f{word-spacing:4.791277px;}
.wsc{word-spacing:4.856731px;}
.ws1e{word-spacing:4.987641px;}
.ws85{word-spacing:5.053095px;}
.wsa7{word-spacing:5.210186px;}
.wsce{word-spacing:5.328004px;}
.ws5d{word-spacing:5.341095px;}
.ws56{word-spacing:5.773096px;}
.ws35{word-spacing:5.786187px;}
.ws58{word-spacing:5.838550px;}
.ws5a{word-spacing:6.061096px;}
.wsd2{word-spacing:6.100369px;}
.ws39{word-spacing:6.427642px;}
.ws8b{word-spacing:6.558551px;}
.wsb7{word-spacing:6.624006px;}
.ws78{word-spacing:6.689460px;}
.ws6f{word-spacing:6.702551px;}
.ws6d{word-spacing:6.715642px;}
.ws1a{word-spacing:6.754915px;}
.ws6a{word-spacing:6.781097px;}
.ws6c{word-spacing:6.885824px;}
.ws75{word-spacing:6.977460px;}
.ws95{word-spacing:7.018046px;}
.ws5{word-spacing:7.042915px;}
.ws7{word-spacing:7.060046px;}
.wsb9{word-spacing:7.082188px;}
.ws1d{word-spacing:7.213097px;}
.ws8c{word-spacing:7.239279px;}
.ws37{word-spacing:7.474915px;}
.wsb6{word-spacing:7.566552px;}
.ws77{word-spacing:7.697461px;}
.ws2b{word-spacing:7.867643px;}
.ws83{word-spacing:7.880734px;}
.wsa8{word-spacing:7.933098px;}
.ws6b{word-spacing:7.959279px;}
.ws5c{word-spacing:8.155643px;}
.wscf{word-spacing:8.221098px;}
.ws20{word-spacing:8.325825px;}
.ws91{word-spacing:8.456734px;}
.ws4b{word-spacing:8.548371px;}
.wsbd{word-spacing:8.718553px;}
.ws46{word-spacing:8.914917px;}
.ws2a{word-spacing:9.072008px;}
.wsc2{word-spacing:9.176735px;}
.ws9c{word-spacing:9.373099px;}
.wsaa{word-spacing:9.438553px;}
.ws30{word-spacing:9.700372px;}
.ws90{word-spacing:9.726554px;}
.ws8d{word-spacing:9.962190px;}
.ws4{word-spacing:10.053827px;}
.ws27{word-spacing:10.158554px;}
.ws21{word-spacing:10.289463px;}
.ws4d{word-spacing:10.302554px;}
.wsc7{word-spacing:10.354918px;}
.ws79{word-spacing:10.551282px;}
.wsa4{word-spacing:10.696046px;}
.ws9b{word-spacing:10.839282px;}
.ws59{word-spacing:10.878555px;}
.wsa9{word-spacing:10.904736px;}
.wsbb{word-spacing:11.009464px;}
.ws72{word-spacing:11.074918px;}
.ws23{word-spacing:11.140373px;}
.ws14{word-spacing:11.336737px;}
.ws12{word-spacing:11.402191px;}
.wsac{word-spacing:11.559282px;}
.ws17{word-spacing:11.664010px;}
.ws81{word-spacing:11.794919px;}
.ws2c{word-spacing:11.886555px;}
.ws4e{word-spacing:11.925828px;}
.wsd5{word-spacing:11.952010px;}
.wsc6{word-spacing:12.017465px;}
.ws8a{word-spacing:12.148374px;}
.wsd7{word-spacing:12.187647px;}
.ws2f{word-spacing:12.266192px;}
.wsc5{word-spacing:12.384010px;}
.wsc4{word-spacing:12.514920px;}
.wsba{word-spacing:12.672011px;}
.ws11{word-spacing:12.907647px;}
.ws13{word-spacing:13.064738px;}
.ws38{word-spacing:13.448943px;}
.ws18{word-spacing:13.457466px;}
.ws16{word-spacing:13.496739px;}
.ws80{word-spacing:13.588375px;}
.ws4a{word-spacing:13.693102px;}
.ws15{word-spacing:13.758557px;}
.ws93{word-spacing:13.824012px;}
.ws33{word-spacing:13.889466px;}
.ws82{word-spacing:14.229830px;}
.wsd8{word-spacing:14.282194px;}
.wsb{word-spacing:14.413103px;}
.ws3f{word-spacing:14.478558px;}
.ws70{word-spacing:14.544012px;}
.ws9d{word-spacing:14.805831px;}
.wsb8{word-spacing:15.093831px;}
.ws69{word-spacing:15.133104px;}
.ws61{word-spacing:15.525831px;}
.ws60{word-spacing:15.591286px;}
.ws92{word-spacing:15.944741px;}
.wsc3{word-spacing:17.371651px;}
.ws9f{word-spacing:17.424015px;}
.ws3e{word-spacing:18.013106px;}
.ws9a{word-spacing:18.340379px;}
.wsbc{word-spacing:18.432015px;}
.ws9e{word-spacing:20.068380px;}
.wsa5{word-spacing:20.631290px;}
.ws99{word-spacing:21.050199px;}
.wsdc{word-spacing:21.351291px;}
.ws71{word-spacing:23.079292px;}
.ws1{word-spacing:23.312640px;}
.wsca{word-spacing:23.733838px;}
.wsd3{word-spacing:24.669560px;}
.wsd4{word-spacing:24.670440px;}
.ws98{word-spacing:24.689475px;}
.wsb5{word-spacing:26.129476px;}
.wsb3{word-spacing:26.613840px;}
.ws40{word-spacing:26.827469px;}
.ws19{word-spacing:27.111295px;}
.ws97{word-spacing:28.381115px;}
.ws31{word-spacing:28.878570px;}
.ws3b{word-spacing:29.821116px;}
.wsd6{word-spacing:31.169481px;}
.ws5f{word-spacing:32.112027px;}
.ws7b{word-spacing:32.192873px;}
.ws28{word-spacing:33.748392px;}
.ws50{word-spacing:34.075665px;}
.wscc{word-spacing:34.638574px;}
.wscb{word-spacing:35.175302px;}
.wsd9{word-spacing:35.685848px;}
.ws51{word-spacing:36.798576px;}
.ws0{word-spacing:38.631358px;}
.ws6e{word-spacing:44.260401px;}
.ws74{word-spacing:48.318586px;}
.ws54{word-spacing:51.918589px;}
.wsb1{word-spacing:52.926590px;}
.wsb4{word-spacing:53.253863px;}
.ws87{word-spacing:53.554954px;}
.ws43{word-spacing:55.125058px;}
.ws73{word-spacing:55.610228px;}
.wsa3{word-spacing:57.940412px;}
.wsa2{word-spacing:66.672056px;}
.ws41{word-spacing:77.720235px;}
.ws48{word-spacing:77.780011px;}
.ws25{word-spacing:80.625869px;}
.ws44{word-spacing:85.012858px;}
.wsdb{word-spacing:85.038616px;}
.ws88{word-spacing:91.584076px;}
.ws24{word-spacing:96.750773px;}
.wsda{word-spacing:97.893900px;}
.ws7c{word-spacing:134.566831px;}
.ws65{word-spacing:249.641208px;}
.ws7d{word-spacing:251.547680px;}
.ws7f{word-spacing:294.526336px;}
.ws86{word-spacing:350.457019px;}
._0{margin-left:-9.709486px;}
._38{margin-left:-8.091257px;}
._2{margin-left:-5.881958px;}
._3b{margin-left:-4.457365px;}
._1{margin-left:-3.202064px;}
._3{margin-left:-1.936742px;}
._4{width:1.936742px;}
._6{width:3.010912px;}
._5{width:7.723643px;}
._d{width:15.054558px;}
._1f{width:17.357132px;}
._29{width:18.720016px;}
._22{width:20.133121px;}
._26{width:26.378204px;}
._e{width:27.621841px;}
._10{width:29.231311px;}
._9{width:30.409493px;}
._43{width:32.242222px;}
._a{width:33.447301px;}
._40{width:35.018211px;}
._7{width:36.130939px;}
._c{width:38.525864px;}
._39{width:39.606485px;}
._f{width:42.256776px;}
._b{width:43.750568px;}
._41{width:45.621856px;}
._44{width:48.436404px;}
._37{width:49.718600px;}
._3e{width:53.214590px;}
._1e{width:54.318362px;}
._42{width:55.413151px;}
._3c{width:56.814593px;}
._3a{width:58.358608px;}
._8{width:61.400513px;}
._20{width:63.163689px;}
._1d{width:71.730720px;}
._27{width:73.076540px;}
._21{width:75.272790px;}
._12{width:80.697600px;}
._35{width:87.185527px;}
._2a{width:96.836850px;}
._36{width:104.530996px;}
._32{width:107.018271px;}
._14{width:110.823962px;}
._31{width:111.861911px;}
._2d{width:114.111620px;}
._28{width:118.472826px;}
._15{width:128.453829px;}
._3f{width:130.909200px;}
._2f{width:134.285944px;}
._3d{width:137.781933px;}
._30{width:147.207395px;}
._24{width:156.767476px;}
._17{width:158.345564px;}
._1a{width:160.497486px;}
._2b{width:163.605817px;}
._33{width:164.945592px;}
._25{width:166.534822px;}
._2c{width:174.568675px;}
._16{width:178.155238px;}
._18{width:183.212214px;}
._2e{width:193.254515px;}
._13{width:196.219372px;}
._19{width:201.981752px;}
._34{width:204.013033px;}
._11{width:207.224629px;}
._1c{width:216.531146px;}
._23{width:239.102400px;}
._1b{width:389.521759px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:35.865600px;}
.fs6{font-size:41.842800px;}
.fs4{font-size:47.820600px;}
.fs5{font-size:59.775600px;}
.fs3{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs2{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y42{bottom:36.168000px;}
.y26{bottom:81.000000px;}
.y25{bottom:101.323500px;}
.y41{bottom:121.647000px;}
.yd2{bottom:121.648500px;}
.yac{bottom:121.753500px;}
.y66{bottom:132.625500px;}
.y24{bottom:133.731000px;}
.y8a{bottom:133.789500px;}
.yf5{bottom:141.972000px;}
.yab{bottom:142.077000px;}
.y23{bottom:144.957000px;}
.yd1{bottom:148.300500px;}
.y65{bottom:152.950500px;}
.y89{bottom:154.113000px;}
.y40{bottom:161.049000px;}
.yf4{bottom:162.295500px;}
.yaa{bottom:162.505500px;}
.yd0{bottom:179.226000px;}
.yf3{bottom:182.619000px;}
.ya9{bottom:182.830500px;}
.y64{bottom:184.252500px;}
.y88{bottom:184.614000px;}
.y22{bottom:189.162000px;}
.y3f{bottom:198.450000px;}
.ycf{bottom:199.549500px;}
.yf2{bottom:202.942500px;}
.y21{bottom:209.485500px;}
.ya8{bottom:213.927000px;}
.y87{bottom:215.116500px;}
.y63{bottom:215.554500px;}
.y3e{bottom:216.291000px;}
.yf1{bottom:223.266000px;}
.y20{bottom:229.809000px;}
.yce{bottom:230.475000px;}
.y3d{bottom:234.223500px;}
.y86{bottom:235.440000px;}
.yf0{bottom:243.591000px;}
.y62{bottom:246.856500px;}
.y1f{bottom:250.132500px;}
.ycd{bottom:250.798500px;}
.y3c{bottom:252.156000px;}
.ya7{bottom:258.349500px;}
.yef{bottom:263.914500px;}
.y85{bottom:267.906000px;}
.y1e{bottom:268.221000px;}
.y3b{bottom:270.088500px;}
.y61{bottom:274.452000px;}
.ya6{bottom:278.673000px;}
.y1d{bottom:279.445500px;}
.ycc{bottom:281.724000px;}
.yee{bottom:284.238000px;}
.y3a{bottom:288.022500px;}
.y84{bottom:288.229500px;}
.y60{bottom:294.775500px;}
.ya5{bottom:299.101500px;}
.ycb{bottom:302.047500px;}
.yed{bottom:304.561500px;}
.y39{bottom:314.170500px;}
.ya4{bottom:319.425000px;}
.y83{bottom:320.694000px;}
.y5f{bottom:322.371000px;}
.yec{bottom:324.885000px;}
.y1c{bottom:325.203000px;}
.yca{bottom:332.973000px;}
.ya3{bottom:339.750000px;}
.y82{bottom:341.017500px;}
.y5e{bottom:342.696000px;}
.yeb{bottom:345.210000px;}
.y1b{bottom:345.526500px;}
.y38{bottom:359.076000px;}
.yc9{bottom:363.897000px;}
.ya2{bottom:370.846500px;}
.y81{bottom:373.483500px;}
.y5d{bottom:373.998000px;}
.y1a{bottom:376.419000px;}
.yea{bottom:377.707500px;}
.y80{bottom:393.807000px;}
.yc8{bottom:394.822500px;}
.y37{bottom:396.202500px;}
.ye9{bottom:398.031000px;}
.y5c{bottom:405.300000px;}
.ya1{bottom:408.177000px;}
.y19{bottom:413.544000px;}
.yc7{bottom:421.476000px;}
.y7f{bottom:424.309500px;}
.y5b{bottom:425.623500px;}
.ye8{bottom:429.885000px;}
.y36{bottom:446.799000px;}
.ye7{bottom:450.210000px;}
.yc6{bottom:452.367000px;}
.y7e{bottom:455.200500px;}
.y5a{bottom:456.925500px;}
.ya0{bottom:460.338000px;}
.y18{bottom:465.091500px;}
.y35{bottom:467.124000px;}
.y9f{bottom:480.661500px;}
.y10b{bottom:481.312500px;}
.ye6{bottom:482.062500px;}
.y59{bottom:484.521000px;}
.y17{bottom:485.415000px;}
.y34{bottom:487.447500px;}
.yc5{bottom:494.844000px;}
.y7d{bottom:497.805000px;}
.y9e{bottom:500.986500px;}
.y10a{bottom:501.636000px;}
.ye5{bottom:502.387500px;}
.y16{bottom:505.738500px;}
.y33{bottom:507.771000px;}
.yc4{bottom:515.167500px;}
.y58{bottom:515.413500px;}
.y7c{bottom:518.128500px;}
.y109{bottom:521.959500px;}
.y15{bottom:526.063500px;}
.ye4{bottom:534.241500px;}
.yc3{bottom:535.491000px;}
.y9d{bottom:538.450500px;}
.y7b{bottom:538.453500px;}
.y32{bottom:538.663500px;}
.y108{bottom:542.284500px;}
.y14{bottom:546.387000px;}
.ye3{bottom:554.565000px;}
.yc2{bottom:555.816000px;}
.y57{bottom:557.470500px;}
.y7a{bottom:558.777000px;}
.y107{bottom:562.608000px;}
.y13{bottom:566.710500px;}
.yc1{bottom:576.139500px;}
.y9c{bottom:576.477000px;}
.y56{bottom:577.794000px;}
.y79{bottom:579.100500px;}
.y31{bottom:581.521500px;}
.y106{bottom:582.931500px;}
.ye2{bottom:586.419000px;}
.y12{bottom:587.034000px;}
.yc0{bottom:596.463000px;}
.y55{bottom:598.117500px;}
.y78{bottom:599.424000px;}
.y30{bottom:601.845000px;}
.y105{bottom:603.255000px;}
.y9b{bottom:605.017500px;}
.ye1{bottom:606.742500px;}
.y11{bottom:607.357500px;}
.y77{bottom:619.747500px;}
.y104{bottom:623.578500px;}
.y9a{bottom:625.341000px;}
.ybf{bottom:627.355500px;}
.y10{bottom:627.682500px;}
.y54{bottom:629.010000px;}
.y2f{bottom:630.526500px;}
.ye0{bottom:638.596500px;}
.y103{bottom:643.903500px;}
.y99{bottom:645.664500px;}
.yf{bottom:648.006000px;}
.y76{bottom:650.250000px;}
.ydf{bottom:658.920000px;}
.y2e{bottom:662.263500px;}
.ye{bottom:668.329500px;}
.ybe{bottom:669.831000px;}
.y75{bottom:670.573500px;}
.y53{bottom:671.664000px;}
.y98{bottom:674.203500px;}
.y102{bottom:680.431500px;}
.yd{bottom:688.653000px;}
.ybd{bottom:690.154500px;}
.yde{bottom:690.774000px;}
.y52{bottom:691.987500px;}
.y2d{bottom:693.999000px;}
.y74{bottom:703.039500px;}
.yc{bottom:708.976500px;}
.y51{bottom:712.311000px;}
.ybc{bottom:721.080000px;}
.ydd{bottom:722.628000px;}
.y2c{bottom:725.736000px;}
.yb{bottom:729.301500px;}
.y101{bottom:731.989500px;}
.y50{bottom:732.634500px;}
.y97{bottom:732.951000px;}
.y73{bottom:733.540500px;}
.ybb{bottom:741.403500px;}
.ydc{bottom:742.951500px;}
.ya{bottom:749.625000px;}
.y100{bottom:752.313000px;}
.y4f{bottom:752.958000px;}
.y72{bottom:753.865500px;}
.y2b{bottom:757.471500px;}
.y9{bottom:769.948500px;}
.yba{bottom:772.329000px;}
.yff{bottom:772.638000px;}
.y4e{bottom:773.283000px;}
.ydb{bottom:774.805500px;}
.y2a{bottom:777.796500px;}
.y71{bottom:784.756500px;}
.y96{bottom:785.112000px;}
.y8{bottom:790.272000px;}
.y4d{bottom:793.606500px;}
.yb9{bottom:798.982500px;}
.y95{bottom:805.435500px;}
.y29{bottom:806.476500px;}
.yda{bottom:807.304500px;}
.yfe{bottom:809.166000px;}
.y7{bottom:810.595500px;}
.y4c{bottom:813.930000px;}
.yb8{bottom:819.306000px;}
.y94{bottom:825.759000px;}
.y28{bottom:826.800000px;}
.y70{bottom:827.361000px;}
.y6{bottom:830.920500px;}
.yb7{bottom:839.629500px;}
.yd9{bottom:843.832500px;}
.y4b{bottom:844.822500px;}
.y93{bottom:846.084000px;}
.y27{bottom:847.125000px;}
.y6f{bottom:847.684500px;}
.yb6{bottom:859.953000px;}
.yfd{bottom:860.724000px;}
.y5{bottom:867.448500px;}
.y6e{bottom:868.009500px;}
.yb5{bottom:880.276500px;}
.y92{bottom:880.366500px;}
.yfc{bottom:881.047500px;}
.y4a{bottom:887.476500px;}
.yd8{bottom:894.486000px;}
.yb4{bottom:900.601500px;}
.y6d{bottom:901.774500px;}
.y49{bottom:907.800000px;}
.yd7{bottom:914.809500px;}
.yfb{bottom:914.821500px;}
.y91{bottom:917.676000px;}
.yb3{bottom:920.925000px;}
.y4{bottom:926.364000px;}
.y6c{bottom:934.957500px;}
.yfa{bottom:935.145000px;}
.y90{bottom:935.608500px;}
.yb2{bottom:941.248500px;}
.y48{bottom:943.281000px;}
.yd6{bottom:946.663500px;}
.y8f{bottom:953.541000px;}
.y6b{bottom:957.016500px;}
.yb1{bottom:961.572000px;}
.y3{bottom:963.052500px;}
.yf9{bottom:968.917500px;}
.y8e{bottom:971.473500px;}
.y6a{bottom:974.950500px;}
.y47{bottom:976.462500px;}
.yd5{bottom:978.517500px;}
.yb0{bottom:981.895500px;}
.y8d{bottom:989.407500px;}
.y46{bottom:998.521500px;}
.y69{bottom:1001.098500px;}
.yaf{bottom:1002.220500px;}
.yf8{bottom:1002.691500px;}
.y8c{bottom:1007.340000px;}
.y2{bottom:1008.519000px;}
.yd4{bottom:1010.371500px;}
.y45{bottom:1016.455500px;}
.yae{bottom:1022.544000px;}
.yd3{bottom:1030.695000px;}
.y8b{bottom:1033.488000px;}
.yf7{bottom:1036.464000px;}
.y68{bottom:1039.345500px;}
.y1{bottom:1041.396000px;}
.y44{bottom:1042.603500px;}
.yad{bottom:1053.435000px;}
.yf6{bottom:1056.789000px;}
.y67{bottom:1059.669000px;}
.y43{bottom:1090.561500px;}
.hf{height:22.918118px;}
.h10{height:35.865450px;}
.h14{height:40.058215px;}
.hd{height:44.831700px;}
.he{height:47.590693px;}
.h4{height:49.090950px;}
.h12{height:49.473619px;}
.h13{height:49.479619px;}
.h2{height:50.498765px;}
.h8{height:53.798400px;}
.h7{height:59.613450px;}
.h5{height:59.619450px;}
.h3{height:64.557900px;}
.h1{height:77.469300px;}
.ha{height:93.370950px;}
.h6{height:100.289493px;}
.h11{height:101.927493px;}
.h9{height:103.899450px;}
.hc{height:107.793450px;}
.hb{height:139.808184px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:81.000000px;}
.x6{left:86.112000px;}
.x1c{left:92.818500px;}
.x2{left:97.971000px;}
.x1{left:99.103500px;}
.x1b{left:105.834000px;}
.x15{left:113.727000px;}
.x13{left:122.628000px;}
.x14{left:129.945000px;}
.x1a{left:138.627000px;}
.xb{left:153.718500px;}
.x19{left:159.040500px;}
.x7{left:171.513000px;}
.xc{left:203.998500px;}
.x8{left:223.932000px;}
.x9{left:258.276000px;}
.x3{left:333.408000px;}
.x4{left:400.593000px;}
.xa{left:430.618500px;}
.x12{left:454.909500px;}
.xe{left:466.471500px;}
.x16{left:475.438500px;}
.x18{left:478.290000px;}
.xd{left:482.835000px;}
.x17{left:492.417000px;}
.xf{left:499.198500px;}
.x11{left:502.782000px;}
.x10{left:528.729000px;}
@media print{
.vd{vertical-align:-15.002667pt;}
.v1{vertical-align:-9.477333pt;}
.ve{vertical-align:-7.968000pt;}
.v10{vertical-align:-5.728000pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:16.810667pt;}
.vc{vertical-align:19.280000pt;}
.v2{vertical-align:21.114667pt;}
.v8{vertical-align:24.021333pt;}
.v9{vertical-align:30.629333pt;}
.v6{vertical-align:39.360000pt;}
.v4{vertical-align:43.536000pt;}
.v3{vertical-align:48.128000pt;}
.vf{vertical-align:49.584000pt;}
.v7{vertical-align:60.474667pt;}
.vb{vertical-align:63.936000pt;}
.v5{vertical-align:82.037333pt;}
.ls2f{letter-spacing:0.000000pt;}
.ls4e{letter-spacing:0.000468pt;}
.ls2d{letter-spacing:0.000939pt;}
.ls1a{letter-spacing:0.001416pt;}
.ls4a{letter-spacing:0.001737pt;}
.ls0{letter-spacing:0.001819pt;}
.ls4{letter-spacing:0.002384pt;}
.ls3c{letter-spacing:0.003174pt;}
.ls8{letter-spacing:0.003323pt;}
.ls2a{letter-spacing:0.005085pt;}
.ls1c{letter-spacing:0.006750pt;}
.ls1e{letter-spacing:0.007193pt;}
.ls41{letter-spacing:0.008942pt;}
.ls45{letter-spacing:0.010283pt;}
.ls48{letter-spacing:0.012041pt;}
.ls3f{letter-spacing:0.015148pt;}
.ls30{letter-spacing:0.015925pt;}
.ls44{letter-spacing:0.022138pt;}
.ls27{letter-spacing:0.022261pt;}
.ls10{letter-spacing:0.024585pt;}
.ls49{letter-spacing:2.650641pt;}
.ls2{letter-spacing:2.653258pt;}
.ls2c{letter-spacing:2.655527pt;}
.ls20{letter-spacing:2.655975pt;}
.ls31{letter-spacing:2.656501pt;}
.ls32{letter-spacing:2.658591pt;}
.ls40{letter-spacing:2.659046pt;}
.lsf{letter-spacing:2.676366pt;}
.ls14{letter-spacing:3.258185pt;}
.ls22{letter-spacing:3.432730pt;}
.ls23{letter-spacing:3.490912pt;}
.ls21{letter-spacing:6.098591pt;}
.lsd{letter-spacing:6.374277pt;}
.ls13{letter-spacing:6.375733pt;}
.ls4b{letter-spacing:6.807278pt;}
.ls1d{letter-spacing:9.031925pt;}
.ls36{letter-spacing:10.705463pt;}
.lsc{letter-spacing:11.782727pt;}
.ls3e{letter-spacing:11.795718pt;}
.ls47{letter-spacing:12.858193pt;}
.lse{letter-spacing:12.916374pt;}
.ls17{letter-spacing:12.974556pt;}
.ls35{letter-spacing:13.357258pt;}
.ls11{letter-spacing:13.381829pt;}
.ls6{letter-spacing:13.614557pt;}
.ls46{letter-spacing:15.527925pt;}
.ls15{letter-spacing:15.581258pt;}
.ls16{letter-spacing:15.586591pt;}
.ls42{letter-spacing:15.709104pt;}
.lsb{letter-spacing:16.144885pt;}
.ls1{letter-spacing:16.174559pt;}
.ls24{letter-spacing:17.309258pt;}
.ls38{letter-spacing:17.803651pt;}
.ls3b{letter-spacing:18.269106pt;}
.ls1f{letter-spacing:18.815975pt;}
.ls29{letter-spacing:18.850925pt;}
.ls12{letter-spacing:19.298823pt;}
.ls28{letter-spacing:19.374562pt;}
.ls3a{letter-spacing:19.385608pt;}
.ls26{letter-spacing:19.840017pt;}
.ls5{letter-spacing:20.654563pt;}
.ls37{letter-spacing:20.935925pt;}
.ls43{letter-spacing:21.527291pt;}
.ls4c{letter-spacing:22.050927pt;}
.ls39{letter-spacing:22.690928pt;}
.ls7{letter-spacing:23.135975pt;}
.ls4f{letter-spacing:23.207925pt;}
.ls19{letter-spacing:25.192748pt;}
.ls50{letter-spacing:25.949113pt;}
.ls18{letter-spacing:26.240022pt;}
.ls2e{letter-spacing:26.626591pt;}
.ls33{letter-spacing:26.631925pt;}
.ls34{letter-spacing:28.392751pt;}
.ls25{letter-spacing:29.090933pt;}
.ls9{letter-spacing:30.301258pt;}
.ls3d{letter-spacing:30.487298pt;}
.lsa{letter-spacing:30.807925pt;}
.ls3{letter-spacing:32.116390pt;}
.ls4d{letter-spacing:52.178591pt;}
.ls2b{letter-spacing:66.417253pt;}
.ls1b{letter-spacing:82.858144pt;}
.ws9{word-spacing:-37.899668pt;}
.ws10{word-spacing:-18.583288pt;}
.ws8{word-spacing:-16.162923pt;}
.ws34{word-spacing:-14.871285pt;}
.ws42{word-spacing:-14.760588pt;}
.ws57{word-spacing:-13.928739pt;}
.ws3c{word-spacing:-12.543875pt;}
.ws3d{word-spacing:-5.725096pt;}
.ws3a{word-spacing:-3.246548pt;}
.ws1b{word-spacing:-3.165094pt;}
.ws66{word-spacing:-2.964870pt;}
.ws64{word-spacing:-2.911736pt;}
.ws1c{word-spacing:-2.722911pt;}
.wsc0{word-spacing:-2.641457pt;}
.ws8f{word-spacing:-2.606548pt;}
.ws8e{word-spacing:-2.548366pt;}
.wse{word-spacing:-2.490184pt;}
.ws94{word-spacing:-2.466911pt;}
.wsc1{word-spacing:-2.315638pt;}
.ws4f{word-spacing:-1.966547pt;}
.ws5e{word-spacing:-1.850183pt;}
.wsb0{word-spacing:-1.792001pt;}
.ws67{word-spacing:-1.768729pt;}
.ws68{word-spacing:-1.559274pt;}
.wsbe{word-spacing:-1.536001pt;}
.ws2d{word-spacing:-1.501092pt;}
.wsbf{word-spacing:-1.326547pt;}
.ws7a{word-spacing:-1.093819pt;}
.ws55{word-spacing:-0.919273pt;}
.ws5b{word-spacing:-0.570182pt;}
.ws2e{word-spacing:-0.046545pt;}
.ws47{word-spacing:0.000000pt;}
.ws29{word-spacing:0.011636pt;}
.wsab{word-spacing:0.128000pt;}
.wsb2{word-spacing:0.186182pt;}
.ws6{word-spacing:0.244364pt;}
.ws63{word-spacing:0.360728pt;}
.wsc8{word-spacing:0.477091pt;}
.ws96{word-spacing:0.593455pt;}
.wsd1{word-spacing:0.884364pt;}
.ws76{word-spacing:1.058910pt;}
.ws84{word-spacing:1.349819pt;}
.wsa6{word-spacing:1.698911pt;}
.wsd{word-spacing:1.815274pt;}
.ws2{word-spacing:1.954911pt;}
.wsd0{word-spacing:2.048002pt;}
.ws53{word-spacing:2.106184pt;}
.ws36{word-spacing:2.338911pt;}
.ws45{word-spacing:2.503674pt;}
.ws49{word-spacing:2.932989pt;}
.wsae{word-spacing:2.978912pt;}
.ws7e{word-spacing:2.986123pt;}
.ws3{word-spacing:3.118548pt;}
.wsa{word-spacing:3.153457pt;}
.wscd{word-spacing:3.165094pt;}
.ws26{word-spacing:3.211639pt;}
.ws89{word-spacing:3.269821pt;}
.ws4c{word-spacing:3.328003pt;}
.wsa1{word-spacing:3.386185pt;}
.wsc9{word-spacing:3.397821pt;}
.wsaf{word-spacing:3.467639pt;}
.ws52{word-spacing:3.502548pt;}
.ws22{word-spacing:3.560730pt;}
.ws32{word-spacing:3.700367pt;}
.wsf{word-spacing:3.735276pt;}
.ws62{word-spacing:3.758549pt;}
.wsa0{word-spacing:3.933094pt;}
.wsad{word-spacing:3.968003pt;}
.ws1f{word-spacing:4.258913pt;}
.wsc{word-spacing:4.317095pt;}
.ws1e{word-spacing:4.433458pt;}
.ws85{word-spacing:4.491640pt;}
.wsa7{word-spacing:4.631277pt;}
.wsce{word-spacing:4.736004pt;}
.ws5d{word-spacing:4.747640pt;}
.ws56{word-spacing:5.131641pt;}
.ws35{word-spacing:5.143277pt;}
.ws58{word-spacing:5.189823pt;}
.ws5a{word-spacing:5.387641pt;}
.wsd2{word-spacing:5.422550pt;}
.ws39{word-spacing:5.713459pt;}
.ws8b{word-spacing:5.829823pt;}
.wsb7{word-spacing:5.888005pt;}
.ws78{word-spacing:5.946187pt;}
.ws6f{word-spacing:5.957823pt;}
.ws6d{word-spacing:5.969460pt;}
.ws1a{word-spacing:6.004369pt;}
.ws6a{word-spacing:6.027641pt;}
.ws6c{word-spacing:6.120732pt;}
.ws75{word-spacing:6.202187pt;}
.ws95{word-spacing:6.238263pt;}
.ws5{word-spacing:6.260369pt;}
.ws7{word-spacing:6.275596pt;}
.wsb9{word-spacing:6.295278pt;}
.ws1d{word-spacing:6.411642pt;}
.ws8c{word-spacing:6.434914pt;}
.ws37{word-spacing:6.644369pt;}
.wsb6{word-spacing:6.725824pt;}
.ws77{word-spacing:6.842188pt;}
.ws2b{word-spacing:6.993460pt;}
.ws83{word-spacing:7.005097pt;}
.wsa8{word-spacing:7.051642pt;}
.ws6b{word-spacing:7.074915pt;}
.ws5c{word-spacing:7.249461pt;}
.wscf{word-spacing:7.307642pt;}
.ws20{word-spacing:7.400733pt;}
.ws91{word-spacing:7.517097pt;}
.ws4b{word-spacing:7.598552pt;}
.wsbd{word-spacing:7.749825pt;}
.ws46{word-spacing:7.924370pt;}
.ws2a{word-spacing:8.064007pt;}
.wsc2{word-spacing:8.157098pt;}
.ws9c{word-spacing:8.331643pt;}
.wsaa{word-spacing:8.389825pt;}
.ws30{word-spacing:8.622553pt;}
.ws90{word-spacing:8.645825pt;}
.ws8d{word-spacing:8.855280pt;}
.ws4{word-spacing:8.936735pt;}
.ws27{word-spacing:9.029826pt;}
.ws21{word-spacing:9.146189pt;}
.ws4d{word-spacing:9.157826pt;}
.wsc7{word-spacing:9.204371pt;}
.ws79{word-spacing:9.378917pt;}
.wsa4{word-spacing:9.507596pt;}
.ws9b{word-spacing:9.634917pt;}
.ws59{word-spacing:9.669826pt;}
.wsa9{word-spacing:9.693099pt;}
.wsbb{word-spacing:9.786190pt;}
.ws72{word-spacing:9.844372pt;}
.ws23{word-spacing:9.902554pt;}
.ws14{word-spacing:10.077099pt;}
.ws12{word-spacing:10.135281pt;}
.wsac{word-spacing:10.274918pt;}
.ws17{word-spacing:10.368009pt;}
.ws81{word-spacing:10.484372pt;}
.ws2c{word-spacing:10.565827pt;}
.ws4e{word-spacing:10.600736pt;}
.wsd5{word-spacing:10.624009pt;}
.wsc6{word-spacing:10.682191pt;}
.ws8a{word-spacing:10.798554pt;}
.wsd7{word-spacing:10.833464pt;}
.ws2f{word-spacing:10.903282pt;}
.wsc5{word-spacing:11.008009pt;}
.wsc4{word-spacing:11.124373pt;}
.wsba{word-spacing:11.264009pt;}
.ws11{word-spacing:11.473464pt;}
.ws13{word-spacing:11.613101pt;}
.ws38{word-spacing:11.954616pt;}
.ws18{word-spacing:11.962192pt;}
.ws16{word-spacing:11.997101pt;}
.ws80{word-spacing:12.078556pt;}
.ws4a{word-spacing:12.171647pt;}
.ws15{word-spacing:12.229828pt;}
.ws93{word-spacing:12.288010pt;}
.ws33{word-spacing:12.346192pt;}
.ws82{word-spacing:12.648738pt;}
.wsd8{word-spacing:12.695283pt;}
.wsb{word-spacing:12.811647pt;}
.ws3f{word-spacing:12.869829pt;}
.ws70{word-spacing:12.928011pt;}
.ws9d{word-spacing:13.160738pt;}
.wsb8{word-spacing:13.416738pt;}
.ws69{word-spacing:13.451648pt;}
.ws61{word-spacing:13.800739pt;}
.ws60{word-spacing:13.858921pt;}
.ws92{word-spacing:14.173103pt;}
.wsc3{word-spacing:15.441467pt;}
.ws9f{word-spacing:15.488013pt;}
.ws3e{word-spacing:16.011650pt;}
.ws9a{word-spacing:16.302559pt;}
.wsbc{word-spacing:16.384014pt;}
.ws9e{word-spacing:17.838560pt;}
.wsa5{word-spacing:18.338924pt;}
.ws99{word-spacing:18.711288pt;}
.wsdc{word-spacing:18.978925pt;}
.ws71{word-spacing:20.514926pt;}
.ws1{word-spacing:20.722347pt;}
.wsca{word-spacing:21.096745pt;}
.wsd3{word-spacing:21.928498pt;}
.wsd4{word-spacing:21.929280pt;}
.ws98{word-spacing:21.946200pt;}
.wsb5{word-spacing:23.226201pt;}
.wsb3{word-spacing:23.656747pt;}
.ws40{word-spacing:23.846639pt;}
.ws19{word-spacing:24.098929pt;}
.ws97{word-spacing:25.227657pt;}
.ws31{word-spacing:25.669840pt;}
.ws3b{word-spacing:26.507658pt;}
.wsd6{word-spacing:27.706205pt;}
.ws5f{word-spacing:28.544024pt;}
.ws7b{word-spacing:28.615887pt;}
.ws28{word-spacing:29.998570pt;}
.ws50{word-spacing:30.289480pt;}
.wscc{word-spacing:30.789844pt;}
.wscb{word-spacing:31.266935pt;}
.wsd9{word-spacing:31.720754pt;}
.ws51{word-spacing:32.709845pt;}
.ws0{word-spacing:34.338985pt;}
.ws6e{word-spacing:39.342578pt;}
.ws74{word-spacing:42.949854pt;}
.ws54{word-spacing:46.149857pt;}
.wsb1{word-spacing:47.045857pt;}
.wsb4{word-spacing:47.336767pt;}
.ws87{word-spacing:47.604403pt;}
.ws43{word-spacing:49.000052pt;}
.ws73{word-spacing:49.431314pt;}
.wsa3{word-spacing:51.502588pt;}
.wsa2{word-spacing:59.264049pt;}
.ws41{word-spacing:69.084653pt;}
.ws48{word-spacing:69.137787pt;}
.ws25{word-spacing:71.667439pt;}
.ws44{word-spacing:75.566985pt;}
.wsdb{word-spacing:75.589881pt;}
.ws88{word-spacing:81.408068pt;}
.ws24{word-spacing:86.000687pt;}
.wsda{word-spacing:87.016800pt;}
.ws7c{word-spacing:119.614961pt;}
.ws65{word-spacing:221.903296pt;}
.ws7d{word-spacing:223.597938pt;}
.ws7f{word-spacing:261.801188pt;}
.ws86{word-spacing:311.517351pt;}
._0{margin-left:-8.630654pt;}
._38{margin-left:-7.192228pt;}
._2{margin-left:-5.228407pt;}
._3b{margin-left:-3.962102pt;}
._1{margin-left:-2.846279pt;}
._3{margin-left:-1.721549pt;}
._4{width:1.721549pt;}
._6{width:2.676366pt;}
._5{width:6.865460pt;}
._d{width:13.381829pt;}
._1f{width:15.428562pt;}
._29{width:16.640014pt;}
._22{width:17.896108pt;}
._26{width:23.447292pt;}
._e{width:24.552748pt;}
._10{width:25.983387pt;}
._9{width:27.030661pt;}
._43{width:28.659753pt;}
._a{width:29.730934pt;}
._40{width:31.127299pt;}
._7{width:32.116390pt;}
._c{width:34.245212pt;}
._39{width:35.205765pt;}
._f{width:37.561579pt;}
._b{width:38.889394pt;}
._41{width:40.552761pt;}
._44{width:43.054581pt;}
._37{width:44.194311pt;}
._3e{width:47.301858pt;}
._1e{width:48.282989pt;}
._42{width:49.256134pt;}
._3c{width:50.501860pt;}
._3a{width:51.874318pt;}
._8{width:54.578234pt;}
._20{width:56.145501pt;}
._1d{width:63.760640pt;}
._27{width:64.956924pt;}
._21{width:66.909147pt;}
._12{width:71.731200pt;}
._35{width:77.498246pt;}
._2a{width:86.077200pt;}
._36{width:92.916441pt;}
._32{width:95.127352pt;}
._14{width:98.510189pt;}
._31{width:99.432810pt;}
._2d{width:101.432551pt;}
._28{width:105.309179pt;}
._15{width:114.181181pt;}
._3f{width:116.363733pt;}
._2f{width:119.365283pt;}
._3d{width:122.472829pt;}
._30{width:130.851018pt;}
._24{width:139.348867pt;}
._17{width:140.751613pt;}
._1a{width:142.664432pt;}
._2b{width:145.427393pt;}
._33{width:146.618304pt;}
._25{width:148.030953pt;}
._2c{width:155.172156pt;}
._16{width:158.360211pt;}
._18{width:162.855301pt;}
._2e{width:171.781791pt;}
._13{width:174.417219pt;}
._19{width:179.539335pt;}
._34{width:181.344918pt;}
._11{width:184.199671pt;}
._1c{width:192.472130pt;}
._23{width:212.535467pt;}
._1b{width:346.241564pt;}
.fs7{font-size:31.880533pt;}
.fs6{font-size:37.193600pt;}
.fs4{font-size:42.507200pt;}
.fs5{font-size:53.133867pt;}
.fs3{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs2{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y42{bottom:32.149333pt;}
.y26{bottom:72.000000pt;}
.y25{bottom:90.065333pt;}
.y41{bottom:108.130667pt;}
.yd2{bottom:108.132000pt;}
.yac{bottom:108.225333pt;}
.y66{bottom:117.889333pt;}
.y24{bottom:118.872000pt;}
.y8a{bottom:118.924000pt;}
.yf5{bottom:126.197333pt;}
.yab{bottom:126.290667pt;}
.y23{bottom:128.850667pt;}
.yd1{bottom:131.822667pt;}
.y65{bottom:135.956000pt;}
.y89{bottom:136.989333pt;}
.y40{bottom:143.154667pt;}
.yf4{bottom:144.262667pt;}
.yaa{bottom:144.449333pt;}
.yd0{bottom:159.312000pt;}
.yf3{bottom:162.328000pt;}
.ya9{bottom:162.516000pt;}
.y64{bottom:163.780000pt;}
.y88{bottom:164.101333pt;}
.y22{bottom:168.144000pt;}
.y3f{bottom:176.400000pt;}
.ycf{bottom:177.377333pt;}
.yf2{bottom:180.393333pt;}
.y21{bottom:186.209333pt;}
.ya8{bottom:190.157333pt;}
.y87{bottom:191.214667pt;}
.y63{bottom:191.604000pt;}
.y3e{bottom:192.258667pt;}
.yf1{bottom:198.458667pt;}
.y20{bottom:204.274667pt;}
.yce{bottom:204.866667pt;}
.y3d{bottom:208.198667pt;}
.y86{bottom:209.280000pt;}
.yf0{bottom:216.525333pt;}
.y62{bottom:219.428000pt;}
.y1f{bottom:222.340000pt;}
.ycd{bottom:222.932000pt;}
.y3c{bottom:224.138667pt;}
.ya7{bottom:229.644000pt;}
.yef{bottom:234.590667pt;}
.y85{bottom:238.138667pt;}
.y1e{bottom:238.418667pt;}
.y3b{bottom:240.078667pt;}
.y61{bottom:243.957333pt;}
.ya6{bottom:247.709333pt;}
.y1d{bottom:248.396000pt;}
.ycc{bottom:250.421333pt;}
.yee{bottom:252.656000pt;}
.y3a{bottom:256.020000pt;}
.y84{bottom:256.204000pt;}
.y60{bottom:262.022667pt;}
.ya5{bottom:265.868000pt;}
.ycb{bottom:268.486667pt;}
.yed{bottom:270.721333pt;}
.y39{bottom:279.262667pt;}
.ya4{bottom:283.933333pt;}
.y83{bottom:285.061333pt;}
.y5f{bottom:286.552000pt;}
.yec{bottom:288.786667pt;}
.y1c{bottom:289.069333pt;}
.yca{bottom:295.976000pt;}
.ya3{bottom:302.000000pt;}
.y82{bottom:303.126667pt;}
.y5e{bottom:304.618667pt;}
.yeb{bottom:306.853333pt;}
.y1b{bottom:307.134667pt;}
.y38{bottom:319.178667pt;}
.yc9{bottom:323.464000pt;}
.ya2{bottom:329.641333pt;}
.y81{bottom:331.985333pt;}
.y5d{bottom:332.442667pt;}
.y1a{bottom:334.594667pt;}
.yea{bottom:335.740000pt;}
.y80{bottom:350.050667pt;}
.yc8{bottom:350.953333pt;}
.y37{bottom:352.180000pt;}
.ye9{bottom:353.805333pt;}
.y5c{bottom:360.266667pt;}
.ya1{bottom:362.824000pt;}
.y19{bottom:367.594667pt;}
.yc7{bottom:374.645333pt;}
.y7f{bottom:377.164000pt;}
.y5b{bottom:378.332000pt;}
.ye8{bottom:382.120000pt;}
.y36{bottom:397.154667pt;}
.ye7{bottom:400.186667pt;}
.yc6{bottom:402.104000pt;}
.y7e{bottom:404.622667pt;}
.y5a{bottom:406.156000pt;}
.ya0{bottom:409.189333pt;}
.y18{bottom:413.414667pt;}
.y35{bottom:415.221333pt;}
.y9f{bottom:427.254667pt;}
.y10b{bottom:427.833333pt;}
.ye6{bottom:428.500000pt;}
.y59{bottom:430.685333pt;}
.y17{bottom:431.480000pt;}
.y34{bottom:433.286667pt;}
.yc5{bottom:439.861333pt;}
.y7d{bottom:442.493333pt;}
.y9e{bottom:445.321333pt;}
.y10a{bottom:445.898667pt;}
.ye5{bottom:446.566667pt;}
.y16{bottom:449.545333pt;}
.y33{bottom:451.352000pt;}
.yc4{bottom:457.926667pt;}
.y58{bottom:458.145333pt;}
.y7c{bottom:460.558667pt;}
.y109{bottom:463.964000pt;}
.y15{bottom:467.612000pt;}
.ye4{bottom:474.881333pt;}
.yc3{bottom:475.992000pt;}
.y9d{bottom:478.622667pt;}
.y7b{bottom:478.625333pt;}
.y32{bottom:478.812000pt;}
.y108{bottom:482.030667pt;}
.y14{bottom:485.677333pt;}
.ye3{bottom:492.946667pt;}
.yc2{bottom:494.058667pt;}
.y57{bottom:495.529333pt;}
.y7a{bottom:496.690667pt;}
.y107{bottom:500.096000pt;}
.y13{bottom:503.742667pt;}
.yc1{bottom:512.124000pt;}
.y9c{bottom:512.424000pt;}
.y56{bottom:513.594667pt;}
.y79{bottom:514.756000pt;}
.y31{bottom:516.908000pt;}
.y106{bottom:518.161333pt;}
.ye2{bottom:521.261333pt;}
.y12{bottom:521.808000pt;}
.yc0{bottom:530.189333pt;}
.y55{bottom:531.660000pt;}
.y78{bottom:532.821333pt;}
.y30{bottom:534.973333pt;}
.y105{bottom:536.226667pt;}
.y9b{bottom:537.793333pt;}
.ye1{bottom:539.326667pt;}
.y11{bottom:539.873333pt;}
.y77{bottom:550.886667pt;}
.y104{bottom:554.292000pt;}
.y9a{bottom:555.858667pt;}
.ybf{bottom:557.649333pt;}
.y10{bottom:557.940000pt;}
.y54{bottom:559.120000pt;}
.y2f{bottom:560.468000pt;}
.ye0{bottom:567.641333pt;}
.y103{bottom:572.358667pt;}
.y99{bottom:573.924000pt;}
.yf{bottom:576.005333pt;}
.y76{bottom:578.000000pt;}
.ydf{bottom:585.706667pt;}
.y2e{bottom:588.678667pt;}
.ye{bottom:594.070667pt;}
.ybe{bottom:595.405333pt;}
.y75{bottom:596.065333pt;}
.y53{bottom:597.034667pt;}
.y98{bottom:599.292000pt;}
.y102{bottom:604.828000pt;}
.yd{bottom:612.136000pt;}
.ybd{bottom:613.470667pt;}
.yde{bottom:614.021333pt;}
.y52{bottom:615.100000pt;}
.y2d{bottom:616.888000pt;}
.y74{bottom:624.924000pt;}
.yc{bottom:630.201333pt;}
.y51{bottom:633.165333pt;}
.ybc{bottom:640.960000pt;}
.ydd{bottom:642.336000pt;}
.y2c{bottom:645.098667pt;}
.yb{bottom:648.268000pt;}
.y101{bottom:650.657333pt;}
.y50{bottom:651.230667pt;}
.y97{bottom:651.512000pt;}
.y73{bottom:652.036000pt;}
.ybb{bottom:659.025333pt;}
.ydc{bottom:660.401333pt;}
.ya{bottom:666.333333pt;}
.y100{bottom:668.722667pt;}
.y4f{bottom:669.296000pt;}
.y72{bottom:670.102667pt;}
.y2b{bottom:673.308000pt;}
.y9{bottom:684.398667pt;}
.yba{bottom:686.514667pt;}
.yff{bottom:686.789333pt;}
.y4e{bottom:687.362667pt;}
.ydb{bottom:688.716000pt;}
.y2a{bottom:691.374667pt;}
.y71{bottom:697.561333pt;}
.y96{bottom:697.877333pt;}
.y8{bottom:702.464000pt;}
.y4d{bottom:705.428000pt;}
.yb9{bottom:710.206667pt;}
.y95{bottom:715.942667pt;}
.y29{bottom:716.868000pt;}
.yda{bottom:717.604000pt;}
.yfe{bottom:719.258667pt;}
.y7{bottom:720.529333pt;}
.y4c{bottom:723.493333pt;}
.yb8{bottom:728.272000pt;}
.y94{bottom:734.008000pt;}
.y28{bottom:734.933333pt;}
.y70{bottom:735.432000pt;}
.y6{bottom:738.596000pt;}
.yb7{bottom:746.337333pt;}
.yd9{bottom:750.073333pt;}
.y4b{bottom:750.953333pt;}
.y93{bottom:752.074667pt;}
.y27{bottom:753.000000pt;}
.y6f{bottom:753.497333pt;}
.yb6{bottom:764.402667pt;}
.yfd{bottom:765.088000pt;}
.y5{bottom:771.065333pt;}
.y6e{bottom:771.564000pt;}
.yb5{bottom:782.468000pt;}
.y92{bottom:782.548000pt;}
.yfc{bottom:783.153333pt;}
.y4a{bottom:788.868000pt;}
.yd8{bottom:795.098667pt;}
.yb4{bottom:800.534667pt;}
.y6d{bottom:801.577333pt;}
.y49{bottom:806.933333pt;}
.yd7{bottom:813.164000pt;}
.yfb{bottom:813.174667pt;}
.y91{bottom:815.712000pt;}
.yb3{bottom:818.600000pt;}
.y4{bottom:823.434667pt;}
.y6c{bottom:831.073333pt;}
.yfa{bottom:831.240000pt;}
.y90{bottom:831.652000pt;}
.yb2{bottom:836.665333pt;}
.y48{bottom:838.472000pt;}
.yd6{bottom:841.478667pt;}
.y8f{bottom:847.592000pt;}
.y6b{bottom:850.681333pt;}
.yb1{bottom:854.730667pt;}
.y3{bottom:856.046667pt;}
.yf9{bottom:861.260000pt;}
.y8e{bottom:863.532000pt;}
.y6a{bottom:866.622667pt;}
.y47{bottom:867.966667pt;}
.yd5{bottom:869.793333pt;}
.yb0{bottom:872.796000pt;}
.y8d{bottom:879.473333pt;}
.y46{bottom:887.574667pt;}
.y69{bottom:889.865333pt;}
.yaf{bottom:890.862667pt;}
.yf8{bottom:891.281333pt;}
.y8c{bottom:895.413333pt;}
.y2{bottom:896.461333pt;}
.yd4{bottom:898.108000pt;}
.y45{bottom:903.516000pt;}
.yae{bottom:908.928000pt;}
.yd3{bottom:916.173333pt;}
.y8b{bottom:918.656000pt;}
.yf7{bottom:921.301333pt;}
.y68{bottom:923.862667pt;}
.y1{bottom:925.685333pt;}
.y44{bottom:926.758667pt;}
.yad{bottom:936.386667pt;}
.yf6{bottom:939.368000pt;}
.y67{bottom:941.928000pt;}
.y43{bottom:969.388000pt;}
.hf{height:20.371661pt;}
.h10{height:31.880400pt;}
.h14{height:35.607302pt;}
.hd{height:39.850400pt;}
.he{height:42.302838pt;}
.h4{height:43.636400pt;}
.h12{height:43.976550pt;}
.h13{height:43.981884pt;}
.h2{height:44.887791pt;}
.h8{height:47.820800pt;}
.h7{height:52.989733pt;}
.h5{height:52.995067pt;}
.h3{height:57.384800pt;}
.h1{height:68.861600pt;}
.ha{height:82.996400pt;}
.h6{height:89.146216pt;}
.h11{height:90.602216pt;}
.h9{height:92.355067pt;}
.hc{height:95.816400pt;}
.hb{height:124.273941pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:72.000000pt;}
.x6{left:76.544000pt;}
.x1c{left:82.505333pt;}
.x2{left:87.085333pt;}
.x1{left:88.092000pt;}
.x1b{left:94.074667pt;}
.x15{left:101.090667pt;}
.x13{left:109.002667pt;}
.x14{left:115.506667pt;}
.x1a{left:123.224000pt;}
.xb{left:136.638667pt;}
.x19{left:141.369333pt;}
.x7{left:152.456000pt;}
.xc{left:181.332000pt;}
.x8{left:199.050667pt;}
.x9{left:229.578667pt;}
.x3{left:296.362667pt;}
.x4{left:356.082667pt;}
.xa{left:382.772000pt;}
.x12{left:404.364000pt;}
.xe{left:414.641333pt;}
.x16{left:422.612000pt;}
.x18{left:425.146667pt;}
.xd{left:429.186667pt;}
.x17{left:437.704000pt;}
.xf{left:443.732000pt;}
.x11{left:446.917333pt;}
.x10{left:469.981333pt;}
}




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