
    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_44c7ad01feadcc32cebacbc5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.095000;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_2e46d3de5f06abe58148d7b4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112000;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_cb8b77a4528ab03c1e8fe085.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.018000;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_3e7d5aaec09ce3f6575ac887.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_089ebc5ba6f33469c3b68e56.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.453000;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_e545f7e8843d92b83684b645.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_4e87325e90bd14cada047765.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.929000;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_a1fce3103c410b184a3a3528.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_2c8d711fed15b338f7f1cd87.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666000;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_c7f2d683110e52a67546f6f6.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_d682152143c8afe174599dde.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.704000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_9cbea57cd72751cc5f544deb.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_a464530ba69b8af2a4db3c16.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.580000;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_6a4251a452eac6f29bae9f73.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.703800;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_8ee91cbaef0ab4705dfab938.woff2')format("woff");}.fff{font-family:fff;line-height:2.262000;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_b463942f14283ab9fd3aec0b.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_aa28ecacbde7582d07db9b1a.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.686000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_ef3f47a731dae71ee655aefc.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.518000;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_11c7dd842d2c63e0eb6aa867.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.018000;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_a7d5b93a3e85994b3a780dbe.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.846000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v6{vertical-align:-58.104000px;}
.va{vertical-align:-18.930000px;}
.v1{vertical-align:-10.758000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:26.028000px;}
.v7{vertical-align:29.616000px;}
.v4{vertical-align:49.200000px;}
.v9{vertical-align:58.098000px;}
.vb{vertical-align:74.556000px;}
.v3{vertical-align:78.702000px;}
.v2{vertical-align:97.632000px;}
.v5{vertical-align:107.310000px;}
.ls0{letter-spacing:0.000000px;}
.ls2f{letter-spacing:0.001031px;}
.ls34{letter-spacing:0.001924px;}
.ls3f{letter-spacing:0.002534px;}
.ls45{letter-spacing:0.003752px;}
.ls30{letter-spacing:0.005591px;}
.ls22{letter-spacing:0.009752px;}
.ls50{letter-spacing:0.010988px;}
.ls1a{letter-spacing:0.011255px;}
.ls46{letter-spacing:0.016723px;}
.ls39{letter-spacing:0.019586px;}
.ls4a{letter-spacing:0.019918px;}
.ls56{letter-spacing:0.020337px;}
.ls55{letter-spacing:0.020604px;}
.ls40{letter-spacing:0.022643px;}
.ls51{letter-spacing:0.023900px;}
.ls5f{letter-spacing:0.025029px;}
.ls1{letter-spacing:0.026210px;}
.ls31{letter-spacing:0.028308px;}
.ls5a{letter-spacing:0.030920px;}
.ls58{letter-spacing:0.033153px;}
.ls42{letter-spacing:0.033483px;}
.ls14{letter-spacing:0.071731px;}
.ls2e{letter-spacing:2.984915px;}
.ls2{letter-spacing:2.987447px;}
.ls37{letter-spacing:2.988103px;}
.ls54{letter-spacing:2.988499px;}
.ls2a{letter-spacing:2.990915px;}
.ls2c{letter-spacing:2.994103px;}
.ls18{letter-spacing:7.603507px;}
.ls36{letter-spacing:7.646463px;}
.ls4e{letter-spacing:7.658523px;}
.lsc{letter-spacing:7.675238px;}
.ls2b{letter-spacing:7.676788px;}
.ls4c{letter-spacing:7.682509px;}
.ls5b{letter-spacing:7.688509px;}
.ls49{letter-spacing:7.746970px;}
.ls3d{letter-spacing:7.962163px;}
.lsf{letter-spacing:9.755443px;}
.lsd{letter-spacing:11.907379px;}
.ls48{letter-spacing:11.957591px;}
.ls4f{letter-spacing:11.979110px;}
.ls16{letter-spacing:13.772390px;}
.ls5{letter-spacing:15.637402px;}
.ls10{letter-spacing:15.924326px;}
.ls59{letter-spacing:16.211251px;}
.ls24{letter-spacing:17.430682px;}
.ls1c{letter-spacing:18.004531px;}
.ls15{letter-spacing:18.793574px;}
.ls1d{letter-spacing:18.865306px;}
.ls5c{letter-spacing:18.924103px;}
.ls35{letter-spacing:18.926915px;}
.ls57{letter-spacing:18.927537px;}
.ls23{letter-spacing:19.025447px;}
.ls12{letter-spacing:19.726080px;}
.ls29{letter-spacing:19.869542px;}
.ls32{letter-spacing:19.925591px;}
.ls47{letter-spacing:19.940354px;}
.lse{letter-spacing:19.941274px;}
.ls1e{letter-spacing:20.873779px;}
.ls17{letter-spacing:22.308403px;}
.ls65{letter-spacing:23.013606px;}
.ls3e{letter-spacing:23.384371px;}
.ls26{letter-spacing:23.456102px;}
.ls6{letter-spacing:23.814758px;}
.ls7{letter-spacing:23.886490px;}
.ls25{letter-spacing:25.105920px;}
.ls8{letter-spacing:25.751501px;}
.ls53{letter-spacing:25.894963px;}
.ls41{letter-spacing:26.393447px;}
.ls27{letter-spacing:26.585447px;}
.ls66{letter-spacing:26.600142px;}
.ls62{letter-spacing:26.827469px;}
.ls4{letter-spacing:27.101447px;}
.ls11{letter-spacing:27.401318px;}
.ls4b{letter-spacing:27.616512px;}
.ls64{letter-spacing:28.295447px;}
.ls60{letter-spacing:28.307447px;}
.ls1b{letter-spacing:28.692480px;}
.ls1f{letter-spacing:29.122867px;}
.ls3a{letter-spacing:29.273447px;}
.ls61{letter-spacing:29.911910px;}
.ls63{letter-spacing:30.557491px;}
.ls3{letter-spacing:30.629222px;}
.ls19{letter-spacing:30.987878px;}
.ls44{letter-spacing:31.059610px;}
.ls28{letter-spacing:31.203072px;}
.ls38{letter-spacing:31.561728px;}
.lsb{letter-spacing:31.876145px;}
.ls4d{letter-spacing:31.882145px;}
.ls2d{letter-spacing:31.920384px;}
.ls13{letter-spacing:32.207309px;}
.ls5e{letter-spacing:33.425447px;}
.lsa{letter-spacing:33.426739px;}
.ls3c{letter-spacing:33.785395px;}
.ls52{letter-spacing:35.076557px;}
.ls9{letter-spacing:35.506944px;}
.ls3b{letter-spacing:37.515418px;}
.ls20{letter-spacing:40.026010px;}
.ls21{letter-spacing:40.384666px;}
.ls43{letter-spacing:41.388902px;}
.ls5d{letter-spacing:79.231715px;}
.ls33{letter-spacing:90.305518px;}
.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;}
}
.ws6e{word-spacing:-56.789591px;}
.ws2b{word-spacing:-45.664082px;}
.ws32{word-spacing:-33.684972px;}
.wsc2{word-spacing:-29.881822px;}
.ws8a{word-spacing:-25.794540px;}
.ws35{word-spacing:-25.722808px;}
.wsb7{word-spacing:-21.763246px;}
.wsaa{word-spacing:-20.113428px;}
.ws7a{word-spacing:-20.013005px;}
.wsf{word-spacing:-19.331558px;}
.wsb0{word-spacing:-19.259827px;}
.ws73{word-spacing:-19.044634px;}
.wsb8{word-spacing:-18.972902px;}
.ws6f{word-spacing:-18.391880px;}
.ws8e{word-spacing:-18.040397px;}
.ws88{word-spacing:-18.033224px;}
.ws37{word-spacing:-17.825203px;}
.ws53{word-spacing:-17.681741px;}
.ws74{word-spacing:-17.610010px;}
.wsb5{word-spacing:-17.538278px;}
.wsab{word-spacing:-17.466547px;}
.ws14{word-spacing:-17.179622px;}
.ws36{word-spacing:-17.036160px;}
.ws1{word-spacing:-16.957256px;}
.ws13{word-spacing:-16.605773px;}
.ws9c{word-spacing:-16.598600px;}
.ws55{word-spacing:-16.534042px;}
.ws50{word-spacing:-16.390579px;}
.ws41{word-spacing:-16.318848px;}
.ws54{word-spacing:-16.247117px;}
.ws8f{word-spacing:-16.096481px;}
.ws70{word-spacing:-16.031923px;}
.ws6d{word-spacing:-15.996058px;}
.ws85{word-spacing:-15.960192px;}
.ws89{word-spacing:-15.744998px;}
.ws11{word-spacing:-15.673267px;}
.ws7d{word-spacing:-15.601536px;}
.ws51{word-spacing:-15.529805px;}
.ws3b{word-spacing:-15.458074px;}
.ws2d{word-spacing:-15.386342px;}
.wsa{word-spacing:-15.356352px;}
.ws94{word-spacing:-15.242880px;}
.ws4e{word-spacing:-15.163976px;}
.ws9d{word-spacing:-14.453837px;}
.ws5a{word-spacing:-14.382106px;}
.ws58{word-spacing:-14.238643px;}
.ws96{word-spacing:-14.095181px;}
.ws90{word-spacing:-14.023450px;}
.ws1a{word-spacing:-13.808256px;}
.ws49{word-spacing:-13.736525px;}
.ws59{word-spacing:-13.593062px;}
.ws0{word-spacing:-13.442427px;}
.wsa9{word-spacing:-13.377869px;}
.ws4f{word-spacing:-13.162675px;}
.ws72{word-spacing:-13.019213px;}
.ws43{word-spacing:-12.804019px;}
.ws3c{word-spacing:-12.660557px;}
.wsa5{word-spacing:-12.373632px;}
.ws30{word-spacing:-12.301901px;}
.ws10{word-spacing:-12.230170px;}
.ws3f{word-spacing:-12.222996px;}
.ws25{word-spacing:-12.014976px;}
.ws1d{word-spacing:-11.889367px;}
.wsbb{word-spacing:-11.799782px;}
.ws2{word-spacing:-11.728051px;}
.ws3e{word-spacing:-11.656320px;}
.wsb{word-spacing:-11.650264px;}
.wsc3{word-spacing:-11.530713px;}
.ws19{word-spacing:-11.512858px;}
.ws75{word-spacing:-11.441126px;}
.wsa0{word-spacing:-11.369395px;}
.ws9f{word-spacing:-11.297664px;}
.ws7b{word-spacing:-11.154202px;}
.wsa3{word-spacing:-11.075297px;}
.wsbc{word-spacing:-11.052508px;}
.ws2a{word-spacing:-11.010739px;}
.wsad{word-spacing:-10.939008px;}
.ws40{word-spacing:-10.652083px;}
.ws3d{word-spacing:-10.221696px;}
.ws9{word-spacing:-10.155874px;}
.ws15{word-spacing:-10.149965px;}
.ws8c{word-spacing:-10.078234px;}
.ws38{word-spacing:-10.071060px;}
.ws4{word-spacing:-9.976548px;}
.ws61{word-spacing:-9.863040px;}
.wsb1{word-spacing:-9.791309px;}
.wsa4{word-spacing:-9.719578px;}
.ws6{word-spacing:-9.677670px;}
.ws1f{word-spacing:-9.576115px;}
.wsb4{word-spacing:-9.504384px;}
.ws33{word-spacing:-9.432653px;}
.ws23{word-spacing:-9.360922px;}
.ws4d{word-spacing:-9.289190px;}
.ws5c{word-spacing:-9.217459px;}
.ws20{word-spacing:-9.073997px;}
.ws12{word-spacing:-8.930534px;}
.ws42{word-spacing:-8.858803px;}
.ws39{word-spacing:-8.787072px;}
.ws3a{word-spacing:-8.715341px;}
.ws4c{word-spacing:-8.643610px;}
.ws52{word-spacing:-8.571878px;}
.wsa7{word-spacing:-8.500147px;}
.wsa8{word-spacing:-8.428416px;}
.wsb9{word-spacing:-8.356685px;}
.ws8d{word-spacing:-8.284954px;}
.ws97{word-spacing:-8.141491px;}
.wsc0{word-spacing:-8.003953px;}
.ws5d{word-spacing:-7.782835px;}
.ws8b{word-spacing:-7.711104px;}
.ws44{word-spacing:-7.639373px;}
.ws5b{word-spacing:-7.345275px;}
.ws27{word-spacing:-7.280717px;}
.ws60{word-spacing:-7.208986px;}
.ws8{word-spacing:-7.167094px;}
.ws18{word-spacing:-6.922061px;}
.wsc5{word-spacing:-6.868216px;}
.ws29{word-spacing:-6.850330px;}
.wsae{word-spacing:-6.556232px;}
.ws4b{word-spacing:-6.419942px;}
.ws24{word-spacing:-6.348211px;}
.ws92{word-spacing:-6.276480px;}
.wsac{word-spacing:-5.989555px;}
.ws63{word-spacing:-5.774362px;}
.ws64{word-spacing:-5.767188px;}
.wsaf{word-spacing:-5.702630px;}
.ws16{word-spacing:-5.630899px;}
.ws2f{word-spacing:-5.487437px;}
.ws3{word-spacing:-5.408532px;}
.ws2c{word-spacing:-5.343974px;}
.ws78{word-spacing:-5.336801px;}
.ws95{word-spacing:-5.265070px;}
.wsbd{word-spacing:-5.254275px;}
.ws86{word-spacing:-5.193339px;}
.ws5f{word-spacing:-5.057050px;}
.ws65{word-spacing:-4.985318px;}
.ws79{word-spacing:-4.698394px;}
.ws98{word-spacing:-4.691220px;}
.ws91{word-spacing:-4.626662px;}
.ws26{word-spacing:-4.554931px;}
.ws22{word-spacing:-4.483200px;}
.wsbe{word-spacing:-4.417417px;}
.ws7{word-spacing:-4.297866px;}
.ws48{word-spacing:-4.268006px;}
.ws45{word-spacing:-4.124544px;}
.ws99{word-spacing:-4.052813px;}
.ws47{word-spacing:-3.909350px;}
.wsb6{word-spacing:-3.837619px;}
.wsa6{word-spacing:-3.765888px;}
.ws21{word-spacing:-3.622426px;}
.wsc{word-spacing:-3.281680px;}
.ws17{word-spacing:-3.263770px;}
.ws46{word-spacing:-3.120307px;}
.ws28{word-spacing:-2.833382px;}
.ws68{word-spacing:-2.761651px;}
.ws67{word-spacing:-2.689920px;}
.ws56{word-spacing:-2.611016px;}
.ws7c{word-spacing:-2.474726px;}
.ws6a{word-spacing:-2.402995px;}
.ws57{word-spacing:-2.259533px;}
.wsb2{word-spacing:-2.187802px;}
.ws1b{word-spacing:-1.829146px;}
.ws7e{word-spacing:-1.535048px;}
.ws5e{word-spacing:-1.470490px;}
.ws81{word-spacing:-1.398758px;}
.ws7f{word-spacing:-1.327027px;}
.wsba{word-spacing:-1.255296px;}
.ws9b{word-spacing:-1.183565px;}
.wsb3{word-spacing:-0.179328px;}
.ws4a{word-spacing:-0.107597px;}
.wse{word-spacing:-0.071731px;}
.wsc8{word-spacing:-0.059776px;}
.wsd{word-spacing:-0.035866px;}
.ws1e{word-spacing:0.000000px;}
.wsa2{word-spacing:2.546458px;}
.wsa1{word-spacing:2.984018px;}
.ws87{word-spacing:8.284954px;}
.ws84{word-spacing:11.835648px;}
.ws69{word-spacing:11.907379px;}
.ws66{word-spacing:15.852595px;}
.ws93{word-spacing:15.924326px;}
.ws71{word-spacing:19.008768px;}
.ws1c{word-spacing:19.546621px;}
.ws77{word-spacing:19.797811px;}
.ws6c{word-spacing:19.869542px;}
.wsc4{word-spacing:19.905275px;}
.ws9a{word-spacing:19.941274px;}
.ws9e{word-spacing:20.658586px;}
.wsc7{word-spacing:21.339889px;}
.wsc1{word-spacing:23.133157px;}
.ws76{word-spacing:23.527834px;}
.ws82{word-spacing:23.814758px;}
.ws31{word-spacing:24.603802px;}
.ws2e{word-spacing:25.966694px;}
.ws62{word-spacing:26.038426px;}
.wsbf{word-spacing:26.420815px;}
.ws80{word-spacing:27.329587px;}
.wsc6{word-spacing:27.915205px;}
.ws5{word-spacing:29.828024px;}
.ws83{word-spacing:241.291020px;}
.ws6b{word-spacing:542.323738px;}
.ws34{word-spacing:739.909020px;}
._2a{margin-left:-19.941274px;}
._29{margin-left:-15.924326px;}
._3{margin-left:-8.894669px;}
._20{margin-left:-7.818701px;}
._2{margin-left:-6.742733px;}
._4{margin-left:-4.961375px;}
._7{margin-left:-3.371357px;}
._0{margin-left:-2.223667px;}
._5{margin-left:-1.063991px;}
._22{width:1.075968px;}
._1{width:2.080205px;}
._18{width:3.873485px;}
._32{width:5.164625px;}
._26{width:7.171926px;}
._2f{width:9.660002px;}
._25{width:11.979110px;}
._9{width:15.888368px;}
._30{width:17.000294px;}
._31{width:18.112307px;}
._e{width:19.510886px;}
._c{width:21.160685px;}
._24{width:22.738790px;}
._8{width:24.747098px;}
._f{width:25.966694px;}
._2c{width:27.042662px;}
._a{width:28.297770px;}
._14{width:30.210601px;}
._b{width:31.346534px;}
._16{width:33.426739px;}
._6{width:34.454686px;}
._13{width:35.793869px;}
._11{width:37.658880px;}
._d{width:39.021754px;}
._1b{width:40.815053px;}
._21{width:41.819290px;}
._1c{width:43.038720px;}
._23{width:44.401613px;}
._12{width:45.764506px;}
._27{width:47.916377px;}
._10{width:49.637990px;}
._1a{width:50.941064px;}
._17{width:52.722432px;}
._1e{width:53.726669px;}
._19{width:57.958810px;}
._1f{width:65.920973px;}
._2d{width:70.864030px;}
._2b{width:90.270342px;}
._28{width:137.783624px;}
._2e{width:178.260342px;}
._1d{width:1687.906867px;}
._15{width:1916.227277px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:47.820600px;}
.fs2{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs0{font-size:71.731200px;}
.y0{bottom:0.000000px;}
.y22{bottom:65.041500px;}
.y88{bottom:120.210000px;}
.y21{bottom:124.816500px;}
.y87{bottom:132.510000px;}
.y113{bottom:142.749000px;}
.y20{bottom:142.750500px;}
.y89{bottom:144.642000px;}
.y4b{bottom:145.738500px;}
.y1f{bottom:160.294500px;}
.y112{bottom:160.683000px;}
.y86{bottom:161.742000px;}
.y4a{bottom:166.660500px;}
.yab{bottom:169.141500px;}
.ycd{bottom:171.540000px;}
.y111{bottom:178.615500px;}
.yac{bottom:185.331000px;}
.y49{bottom:187.581000px;}
.yce{bottom:187.729500px;}
.y85{bottom:193.138500px;}
.y1e{bottom:193.783500px;}
.y110{bottom:196.548000px;}
.y48{bottom:208.503000px;}
.yaa{bottom:209.739000px;}
.ycc{bottom:212.137500px;}
.y10f{bottom:214.480500px;}
.y1d{bottom:214.705500px;}
.y84{bottom:224.700000px;}
.ya9{bottom:228.843000px;}
.y47{bottom:229.425000px;}
.y10e{bottom:232.413000px;}
.ycb{bottom:232.645500px;}
.y1c{bottom:235.626000px;}
.y83{bottom:245.620500px;}
.ya8{bottom:249.765000px;}
.y46{bottom:250.345500px;}
.yec{bottom:250.347000px;}
.y1b{bottom:256.548000px;}
.yc9{bottom:259.267500px;}
.y65{bottom:268.972500px;}
.y45{bottom:271.267500px;}
.yc8{bottom:271.569000px;}
.y1a{bottom:277.470000px;}
.y10d{bottom:278.739000px;}
.y82{bottom:283.308000px;}
.yca{bottom:283.701000px;}
.ya7{bottom:285.616500px;}
.y64{bottom:289.894500px;}
.yeb{bottom:292.189500px;}
.y19{bottom:298.392000px;}
.yc7{bottom:305.767500px;}
.y44{bottom:309.594000px;}
.y63{bottom:310.816500px;}
.y81{bottom:314.704500px;}
.ya6{bottom:316.095000px;}
.y10c{bottom:316.935000px;}
.y18{bottom:319.312500px;}
.yea{bottom:329.409000px;}
.y43{bottom:330.516000px;}
.y62{bottom:331.738500px;}
.y10b{bottom:337.857000px;}
.yc6{bottom:338.646000px;}
.y17{bottom:340.234500px;}
.y80{bottom:346.101000px;}
.ya5{bottom:346.575000px;}
.ye9{bottom:350.331000px;}
.y42{bottom:351.438000px;}
.y61{bottom:352.659000px;}
.y10a{bottom:358.777500px;}
.y16{bottom:361.156500px;}
.y7f{bottom:367.021500px;}
.ya1{bottom:369.976500px;}
.yc5{bottom:371.523000px;}
.y41{bottom:372.358500px;}
.y60{bottom:373.581000px;}
.ya4{bottom:373.866000px;}
.ye8{bottom:375.786000px;}
.y15{bottom:382.077000px;}
.y109{bottom:383.821500px;}
.ya2{bottom:386.166000px;}
.y7e{bottom:387.943500px;}
.ye7{bottom:388.087500px;}
.yc4{bottom:392.445000px;}
.y40{bottom:393.280500px;}
.y5f{bottom:394.503000px;}
.ya3{bottom:398.298000px;}
.y14{bottom:402.999000px;}
.y108{bottom:404.742000px;}
.y7d{bottom:408.865500px;}
.ya0{bottom:410.575500px;}
.yc3{bottom:413.367000px;}
.y5e{bottom:415.423500px;}
.y13{bottom:423.921000px;}
.y107{bottom:425.664000px;}
.ye6{bottom:428.590500px;}
.y9f{bottom:428.683500px;}
.y7c{bottom:429.786000px;}
.y3f{bottom:431.607000px;}
.y5d{bottom:436.345500px;}
.yc2{bottom:442.582500px;}
.y12{bottom:444.841500px;}
.y106{bottom:446.586000px;}
.ye5{bottom:449.512500px;}
.y7b{bottom:450.708000px;}
.y9e{bottom:452.188500px;}
.y3e{bottom:452.529000px;}
.y5c{bottom:457.267500px;}
.y9d{bottom:464.488500px;}
.y11{bottom:465.763500px;}
.y105{bottom:467.506500px;}
.yc1{bottom:468.138000px;}
.y7a{bottom:471.630000px;}
.y3d{bottom:477.169500px;}
.y10{bottom:486.685500px;}
.ye4{bottom:486.732000px;}
.y104{bottom:488.428500px;}
.yc0{bottom:489.060000px;}
.y3c{bottom:493.359000px;}
.y5b{bottom:496.815000px;}
.y9c{bottom:504.609000px;}
.ye3{bottom:507.652500px;}
.y78{bottom:507.822000px;}
.y103{bottom:509.350500px;}
.y5a{bottom:517.737000px;}
.yf{bottom:518.067000px;}
.y77{bottom:520.123500px;}
.ye2{bottom:528.574500px;}
.ybf{bottom:529.710000px;}
.y9a{bottom:529.932000px;}
.y79{bottom:532.255500px;}
.y102{bottom:534.393000px;}
.y3b{bottom:538.110000px;}
.y59{bottom:538.659000px;}
.y99{bottom:542.233500px;}
.ye1{bottom:549.496500px;}
.ybe{bottom:550.632000px;}
.y9b{bottom:554.364000px;}
.y3a{bottom:559.030500px;}
.y58{bottom:559.579500px;}
.y76{bottom:560.163000px;}
.y101{bottom:567.615000px;}
.ye0{bottom:570.417000px;}
.y98{bottom:574.033500px;}
.y39{bottom:579.952500px;}
.y57{bottom:580.501500px;}
.y75{bottom:581.085000px;}
.ybd{bottom:583.509000px;}
.y100{bottom:588.537000px;}
.ydf{bottom:591.339000px;}
.ye{bottom:593.022000px;}
.y97{bottom:594.955500px;}
.y38{bottom:600.874500px;}
.y56{bottom:601.423500px;}
.y74{bottom:602.007000px;}
.yff{bottom:609.459000px;}
.yd{bottom:610.954500px;}
.yde{bottom:612.261000px;}
.ybc{bottom:616.387500px;}
.y37{bottom:621.795000px;}
.y55{bottom:622.345500px;}
.y73{bottom:622.927500px;}
.yc{bottom:628.887000px;}
.yfe{bottom:630.379500px;}
.y96{bottom:630.807000px;}
.yb9{bottom:642.187500px;}
.y54{bottom:643.266000px;}
.ybb{bottom:646.077000px;}
.yb{bottom:646.821000px;}
.y72{bottom:647.248500px;}
.ydd{bottom:649.480500px;}
.yfd{bottom:651.301500px;}
.y95{bottom:651.729000px;}
.y36{bottom:653.178000px;}
.y53{bottom:664.188000px;}
.ya{bottom:664.753500px;}
.ydc{bottom:670.402500px;}
.yba{bottom:670.509000px;}
.y71{bottom:671.680500px;}
.yfc{bottom:672.223500px;}
.y94{bottom:672.649500px;}
.y9{bottom:682.686000px;}
.yb8{bottom:682.786500px;}
.y52{bottom:685.110000px;}
.ydb{bottom:691.323000px;}
.y93{bottom:693.571500px;}
.y35{bottom:698.665500px;}
.y70{bottom:700.585500px;}
.y8{bottom:700.618500px;}
.yb7{bottom:703.293000px;}
.yfb{bottom:705.445500px;}
.yda{bottom:712.245000px;}
.y92{bottom:718.069500px;}
.y7{bottom:718.551000px;}
.y34{bottom:719.586000px;}
.y6f{bottom:721.507500px;}
.y51{bottom:724.657500px;}
.yfa{bottom:726.367500px;}
.yb6{bottom:730.464000px;}
.y91{bottom:734.259000px;}
.y33{bottom:740.508000px;}
.yb5{bottom:742.765500px;}
.yd9{bottom:743.628000px;}
.y50{bottom:745.579500px;}
.yf9{bottom:747.289500px;}
.y6e{bottom:749.242500px;}
.y32{bottom:761.430000px;}
.y6{bottom:761.869500px;}
.y4f{bottom:766.501500px;}
.yf8{bottom:768.210000px;}
.y6d{bottom:773.316000px;}
.y90{bottom:777.772500px;}
.y31{bottom:782.352000px;}
.yb4{bottom:787.042500px;}
.y4e{bottom:787.422000px;}
.yd8{bottom:787.533000px;}
.yf7{bottom:789.132000px;}
.y6c{bottom:794.238000px;}
.y8f{bottom:798.694500px;}
.y30{bottom:803.272500px;}
.y5{bottom:806.701500px;}
.yb3{bottom:807.964500px;}
.y4d{bottom:808.344000px;}
.yd7{bottom:808.455000px;}
.yf6{bottom:822.354000px;}
.y2f{bottom:824.194500px;}
.y4{bottom:827.623500px;}
.yb2{bottom:828.885000px;}
.yd6{bottom:829.375500px;}
.y6b{bottom:831.925500px;}
.y8e{bottom:834.546000px;}
.y4c{bottom:839.727000px;}
.yf5{bottom:843.276000px;}
.y2e{bottom:845.116500px;}
.y3{bottom:848.545500px;}
.yd5{bottom:850.297500px;}
.y6a{bottom:852.846000px;}
.y8d{bottom:855.468000px;}
.yf4{bottom:864.198000px;}
.y2d{bottom:866.037000px;}
.yb1{bottom:869.535000px;}
.y69{bottom:873.768000px;}
.y8c{bottom:876.390000px;}
.yd4{bottom:877.798500px;}
.yf3{bottom:885.118500px;}
.y2c{bottom:886.959000px;}
.yb0{bottom:890.457000px;}
.y68{bottom:894.690000px;}
.y8b{bottom:897.310500px;}
.yd3{bottom:901.639500px;}
.yf2{bottom:906.040500px;}
.y2b{bottom:907.881000px;}
.yaf{bottom:911.379000px;}
.y67{bottom:915.612000px;}
.yd2{bottom:922.560000px;}
.y2{bottom:925.794000px;}
.yf1{bottom:926.962500px;}
.y8a{bottom:928.693500px;}
.y2a{bottom:928.801500px;}
.y119{bottom:931.044000px;}
.yae{bottom:932.299500px;}
.yd0{bottom:942.985500px;}
.y66{bottom:946.993500px;}
.y118{bottom:948.976500px;}
.y29{bottom:949.723500px;}
.y1{bottom:950.982000px;}
.yd1{bottom:959.175000px;}
.yf0{bottom:960.184500px;}
.yad{bottom:963.682500px;}
.y117{bottom:966.909000px;}
.y28{bottom:970.645500px;}
.yef{bottom:981.106500px;}
.ycf{bottom:983.584500px;}
.y27{bottom:991.567500px;}
.y116{bottom:1000.533000px;}
.yee{bottom:1002.027000px;}
.y26{bottom:1012.488000px;}
.y115{bottom:1018.465500px;}
.yed{bottom:1022.949000px;}
.y25{bottom:1033.410000px;}
.y114{bottom:1036.398000px;}
.y24{bottom:1054.332000px;}
.y23{bottom:1096.473000px;}
.h15{height:14.257496px;}
.h1c{height:14.263496px;}
.h7{height:33.187496px;}
.h5{height:35.883533px;}
.h1f{height:42.201574px;}
.h3{height:45.967436px;}
.h9{height:50.498765px;}
.h1e{height:52.794163px;}
.h8{height:53.798400px;}
.hd{height:56.347715px;}
.h18{height:57.834699px;}
.he{height:61.416699px;}
.h4{height:61.832294px;}
.h1a{height:62.803496px;}
.h2{height:64.199424px;}
.h14{height:99.026765px;}
.h17{height:99.704765px;}
.h1d{height:101.287715px;}
.h12{height:102.320400px;}
.hb{height:102.326400px;}
.ha{height:102.998400px;}
.h16{height:106.356699px;}
.h13{height:110.173248px;}
.hc{height:110.179248px;}
.h10{height:110.616699px;}
.h19{height:110.622699px;}
.h6{height:111.889496px;}
.h11{height:111.895496px;}
.h1b{height:112.009496px;}
.hf{height:151.526400px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:124.207500px;}
.x1{left:130.693500px;}
.x3d{left:138.163500px;}
.x8{left:148.626000px;}
.x3e{left:161.404500px;}
.xe{left:170.683500px;}
.xb{left:173.635500px;}
.x6{left:184.491000px;}
.x3b{left:187.306500px;}
.x1b{left:194.022000px;}
.x2{left:204.115500px;}
.x34{left:211.912500px;}
.x4{left:216.472500px;}
.x35{left:221.874000px;}
.x1c{left:232.189500px;}
.x36{left:239.014500px;}
.x20{left:246.240000px;}
.x1d{left:249.328500px;}
.x3a{left:252.474000px;}
.x17{left:254.571000px;}
.x21{left:256.203000px;}
.x2c{left:268.513500px;}
.x22{left:270.354000px;}
.x2d{left:278.476500px;}
.x31{left:286.335000px;}
.x1e{left:293.940000px;}
.x3{left:294.964500px;}
.xf{left:297.634500px;}
.x2e{left:310.338000px;}
.x30{left:322.300500px;}
.x5{left:327.319500px;}
.x29{left:335.688000px;}
.x18{left:336.834000px;}
.x16{left:343.777500px;}
.x26{left:348.019500px;}
.x37{left:353.733000px;}
.xc{left:356.844000px;}
.x27{left:357.982500px;}
.x38{left:363.696000px;}
.x32{left:368.598000px;}
.x2a{left:372.003000px;}
.xd{left:373.983000px;}
.x28{left:375.123000px;}
.x11{left:378.262500px;}
.x12{left:379.743000px;}
.x39{left:380.835000px;}
.x19{left:383.794500px;}
.x7{left:385.338000px;}
.x15{left:388.203000px;}
.x10{left:389.652000px;}
.x2f{left:391.485000px;}
.x3c{left:393.828000px;}
.x9{left:446.136000px;}
.x14{left:450.468000px;}
.x1f{left:454.009500px;}
.x13{left:455.457000px;}
.x33{left:456.564000px;}
.x23{left:460.684500px;}
.x2b{left:467.194500px;}
.x25{left:479.617500px;}
.x24{left:484.606500px;}
.x1a{left:514.669500px;}
@media print{
.v6{vertical-align:-51.648000pt;}
.va{vertical-align:-16.826667pt;}
.v1{vertical-align:-9.562667pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:23.136000pt;}
.v7{vertical-align:26.325333pt;}
.v4{vertical-align:43.733333pt;}
.v9{vertical-align:51.642667pt;}
.vb{vertical-align:66.272000pt;}
.v3{vertical-align:69.957333pt;}
.v2{vertical-align:86.784000pt;}
.v5{vertical-align:95.386667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2f{letter-spacing:0.000916pt;}
.ls34{letter-spacing:0.001710pt;}
.ls3f{letter-spacing:0.002253pt;}
.ls45{letter-spacing:0.003335pt;}
.ls30{letter-spacing:0.004970pt;}
.ls22{letter-spacing:0.008668pt;}
.ls50{letter-spacing:0.009767pt;}
.ls1a{letter-spacing:0.010004pt;}
.ls46{letter-spacing:0.014865pt;}
.ls39{letter-spacing:0.017410pt;}
.ls4a{letter-spacing:0.017705pt;}
.ls56{letter-spacing:0.018077pt;}
.ls55{letter-spacing:0.018314pt;}
.ls40{letter-spacing:0.020127pt;}
.ls51{letter-spacing:0.021245pt;}
.ls5f{letter-spacing:0.022248pt;}
.ls1{letter-spacing:0.023298pt;}
.ls31{letter-spacing:0.025163pt;}
.ls5a{letter-spacing:0.027484pt;}
.ls58{letter-spacing:0.029469pt;}
.ls42{letter-spacing:0.029763pt;}
.ls14{letter-spacing:0.063761pt;}
.ls2e{letter-spacing:2.653258pt;}
.ls2{letter-spacing:2.655508pt;}
.ls37{letter-spacing:2.656092pt;}
.ls54{letter-spacing:2.656444pt;}
.ls2a{letter-spacing:2.658591pt;}
.ls2c{letter-spacing:2.661425pt;}
.ls18{letter-spacing:6.758673pt;}
.ls36{letter-spacing:6.796856pt;}
.ls4e{letter-spacing:6.807576pt;}
.lsc{letter-spacing:6.822434pt;}
.ls2b{letter-spacing:6.823811pt;}
.ls4c{letter-spacing:6.828897pt;}
.ls5b{letter-spacing:6.834231pt;}
.ls49{letter-spacing:6.886195pt;}
.ls3d{letter-spacing:7.077478pt;}
.lsf{letter-spacing:8.671505pt;}
.lsd{letter-spacing:10.584337pt;}
.ls48{letter-spacing:10.628970pt;}
.ls4f{letter-spacing:10.648098pt;}
.ls16{letter-spacing:12.242125pt;}
.ls5{letter-spacing:13.899913pt;}
.ls10{letter-spacing:14.154957pt;}
.ls59{letter-spacing:14.410001pt;}
.ls24{letter-spacing:15.493939pt;}
.ls1c{letter-spacing:16.004028pt;}
.ls15{letter-spacing:16.705399pt;}
.ls1d{letter-spacing:16.769161pt;}
.ls5c{letter-spacing:16.821425pt;}
.ls35{letter-spacing:16.823925pt;}
.ls57{letter-spacing:16.824478pt;}
.ls23{letter-spacing:16.911508pt;}
.ls12{letter-spacing:17.534293pt;}
.ls29{letter-spacing:17.661815pt;}
.ls32{letter-spacing:17.711636pt;}
.ls47{letter-spacing:17.724759pt;}
.lse{letter-spacing:17.725577pt;}
.ls1e{letter-spacing:18.554470pt;}
.ls17{letter-spacing:19.829692pt;}
.ls65{letter-spacing:20.456539pt;}
.ls3e{letter-spacing:20.786108pt;}
.ls26{letter-spacing:20.849869pt;}
.ls6{letter-spacing:21.168674pt;}
.ls7{letter-spacing:21.232435pt;}
.ls25{letter-spacing:22.316373pt;}
.ls8{letter-spacing:22.890223pt;}
.ls53{letter-spacing:23.017745pt;}
.ls41{letter-spacing:23.460841pt;}
.ls27{letter-spacing:23.631508pt;}
.ls66{letter-spacing:23.644571pt;}
.ls62{letter-spacing:23.846639pt;}
.ls4{letter-spacing:24.090175pt;}
.ls11{letter-spacing:24.356727pt;}
.ls4b{letter-spacing:24.548011pt;}
.ls64{letter-spacing:25.151508pt;}
.ls60{letter-spacing:25.162175pt;}
.ls1b{letter-spacing:25.504427pt;}
.ls1f{letter-spacing:25.886993pt;}
.ls3a{letter-spacing:26.020841pt;}
.ls61{letter-spacing:26.588365pt;}
.ls63{letter-spacing:27.162214pt;}
.ls3{letter-spacing:27.225975pt;}
.ls19{letter-spacing:27.544781pt;}
.ls44{letter-spacing:27.608542pt;}
.ls28{letter-spacing:27.736064pt;}
.ls38{letter-spacing:28.054869pt;}
.lsb{letter-spacing:28.334351pt;}
.ls4d{letter-spacing:28.339685pt;}
.ls2d{letter-spacing:28.373675pt;}
.ls13{letter-spacing:28.628719pt;}
.ls5e{letter-spacing:29.711508pt;}
.lsa{letter-spacing:29.712657pt;}
.ls3c{letter-spacing:30.031462pt;}
.ls52{letter-spacing:31.179162pt;}
.ls9{letter-spacing:31.561728pt;}
.ls3b{letter-spacing:33.347038pt;}
.ls20{letter-spacing:35.578675pt;}
.ls21{letter-spacing:35.897481pt;}
.ls43{letter-spacing:36.790135pt;}
.ls5d{letter-spacing:70.428191pt;}
.ls33{letter-spacing:80.271572pt;}
.ws6e{word-spacing:-50.479636pt;}
.ws2b{word-spacing:-40.590295pt;}
.ws32{word-spacing:-29.942197pt;}
.wsc2{word-spacing:-26.561620pt;}
.ws8a{word-spacing:-22.928480pt;}
.ws35{word-spacing:-22.864719pt;}
.wsb7{word-spacing:-19.345108pt;}
.wsaa{word-spacing:-17.878603pt;}
.ws7a{word-spacing:-17.789338pt;}
.wsf{word-spacing:-17.183607pt;}
.wsb0{word-spacing:-17.119846pt;}
.ws73{word-spacing:-16.928563pt;}
.wsb8{word-spacing:-16.864802pt;}
.ws6f{word-spacing:-16.348337pt;}
.ws8e{word-spacing:-16.035908pt;}
.ws88{word-spacing:-16.029532pt;}
.ws37{word-spacing:-15.844625pt;}
.ws53{word-spacing:-15.717103pt;}
.ws74{word-spacing:-15.653342pt;}
.wsb5{word-spacing:-15.589581pt;}
.wsab{word-spacing:-15.525820pt;}
.ws14{word-spacing:-15.270775pt;}
.ws36{word-spacing:-15.143253pt;}
.ws1{word-spacing:-15.073116pt;}
.ws13{word-spacing:-14.760687pt;}
.ws9c{word-spacing:-14.754311pt;}
.ws55{word-spacing:-14.696926pt;}
.ws50{word-spacing:-14.569404pt;}
.ws41{word-spacing:-14.505643pt;}
.ws54{word-spacing:-14.441882pt;}
.ws8f{word-spacing:-14.307983pt;}
.ws70{word-spacing:-14.250598pt;}
.ws6d{word-spacing:-14.218718pt;}
.ws85{word-spacing:-14.186837pt;}
.ws89{word-spacing:-13.995554pt;}
.ws11{word-spacing:-13.931793pt;}
.ws7d{word-spacing:-13.868032pt;}
.ws51{word-spacing:-13.804271pt;}
.ws3b{word-spacing:-13.740510pt;}
.ws2d{word-spacing:-13.676749pt;}
.wsa{word-spacing:-13.650090pt;}
.ws94{word-spacing:-13.549227pt;}
.ws4e{word-spacing:-13.479089pt;}
.ws9d{word-spacing:-12.847855pt;}
.ws5a{word-spacing:-12.784094pt;}
.ws58{word-spacing:-12.656572pt;}
.ws96{word-spacing:-12.529050pt;}
.ws90{word-spacing:-12.465289pt;}
.ws1a{word-spacing:-12.274005pt;}
.ws49{word-spacing:-12.210244pt;}
.ws59{word-spacing:-12.082722pt;}
.ws0{word-spacing:-11.948824pt;}
.wsa9{word-spacing:-11.891439pt;}
.ws4f{word-spacing:-11.700156pt;}
.ws72{word-spacing:-11.572634pt;}
.ws43{word-spacing:-11.381350pt;}
.ws3c{word-spacing:-11.253828pt;}
.wsa5{word-spacing:-10.998784pt;}
.ws30{word-spacing:-10.935023pt;}
.ws10{word-spacing:-10.871262pt;}
.ws3f{word-spacing:-10.864886pt;}
.ws25{word-spacing:-10.679979pt;}
.ws1d{word-spacing:-10.568326pt;}
.wsbb{word-spacing:-10.488695pt;}
.ws2{word-spacing:-10.424934pt;}
.ws3e{word-spacing:-10.361173pt;}
.wsb{word-spacing:-10.355791pt;}
.wsc3{word-spacing:-10.249523pt;}
.ws19{word-spacing:-10.233651pt;}
.ws75{word-spacing:-10.169890pt;}
.wsa0{word-spacing:-10.106129pt;}
.ws9f{word-spacing:-10.042368pt;}
.ws7b{word-spacing:-9.914846pt;}
.wsa3{word-spacing:-9.844709pt;}
.wsbc{word-spacing:-9.824452pt;}
.ws2a{word-spacing:-9.787324pt;}
.wsad{word-spacing:-9.723563pt;}
.ws40{word-spacing:-9.468518pt;}
.ws3d{word-spacing:-9.085952pt;}
.ws9{word-spacing:-9.027444pt;}
.ws15{word-spacing:-9.022191pt;}
.ws8c{word-spacing:-8.958430pt;}
.ws38{word-spacing:-8.952054pt;}
.ws4{word-spacing:-8.868042pt;}
.ws61{word-spacing:-8.767147pt;}
.wsb1{word-spacing:-8.703386pt;}
.wsa4{word-spacing:-8.639625pt;}
.ws6{word-spacing:-8.602373pt;}
.ws1f{word-spacing:-8.512102pt;}
.wsb4{word-spacing:-8.448341pt;}
.ws33{word-spacing:-8.384580pt;}
.ws23{word-spacing:-8.320819pt;}
.ws4d{word-spacing:-8.257058pt;}
.ws5c{word-spacing:-8.193297pt;}
.ws20{word-spacing:-8.065775pt;}
.ws12{word-spacing:-7.938253pt;}
.ws42{word-spacing:-7.874492pt;}
.ws39{word-spacing:-7.810731pt;}
.ws3a{word-spacing:-7.746970pt;}
.ws4c{word-spacing:-7.683209pt;}
.ws52{word-spacing:-7.619447pt;}
.wsa7{word-spacing:-7.555686pt;}
.wsa8{word-spacing:-7.491925pt;}
.wsb9{word-spacing:-7.428164pt;}
.ws8d{word-spacing:-7.364403pt;}
.ws97{word-spacing:-7.236881pt;}
.wsc0{word-spacing:-7.114625pt;}
.ws5d{word-spacing:-6.918076pt;}
.ws8b{word-spacing:-6.854315pt;}
.ws44{word-spacing:-6.790554pt;}
.ws5b{word-spacing:-6.529133pt;}
.ws27{word-spacing:-6.471748pt;}
.ws60{word-spacing:-6.407987pt;}
.ws8{word-spacing:-6.370751pt;}
.ws18{word-spacing:-6.152943pt;}
.wsc5{word-spacing:-6.105081pt;}
.ws29{word-spacing:-6.089182pt;}
.wsae{word-spacing:-5.827761pt;}
.ws4b{word-spacing:-5.706615pt;}
.ws24{word-spacing:-5.642854pt;}
.ws92{word-spacing:-5.579093pt;}
.wsac{word-spacing:-5.324049pt;}
.ws63{word-spacing:-5.132766pt;}
.ws64{word-spacing:-5.126390pt;}
.wsaf{word-spacing:-5.069005pt;}
.ws16{word-spacing:-5.005244pt;}
.ws2f{word-spacing:-4.877722pt;}
.ws3{word-spacing:-4.807584pt;}
.ws2c{word-spacing:-4.750199pt;}
.ws78{word-spacing:-4.743823pt;}
.ws95{word-spacing:-4.680062pt;}
.wsbd{word-spacing:-4.670467pt;}
.ws86{word-spacing:-4.616301pt;}
.ws5f{word-spacing:-4.495155pt;}
.ws65{word-spacing:-4.431394pt;}
.ws79{word-spacing:-4.176350pt;}
.ws98{word-spacing:-4.169974pt;}
.ws91{word-spacing:-4.112589pt;}
.ws26{word-spacing:-4.048828pt;}
.ws22{word-spacing:-3.985067pt;}
.wsbe{word-spacing:-3.926593pt;}
.ws7{word-spacing:-3.820325pt;}
.ws48{word-spacing:-3.793783pt;}
.ws45{word-spacing:-3.666261pt;}
.ws99{word-spacing:-3.602500pt;}
.ws47{word-spacing:-3.474978pt;}
.wsb6{word-spacing:-3.411217pt;}
.wsa6{word-spacing:-3.347456pt;}
.ws21{word-spacing:-3.219934pt;}
.wsc{word-spacing:-2.917049pt;}
.ws17{word-spacing:-2.901129pt;}
.ws46{word-spacing:-2.773606pt;}
.ws28{word-spacing:-2.518562pt;}
.ws68{word-spacing:-2.454801pt;}
.ws67{word-spacing:-2.391040pt;}
.ws56{word-spacing:-2.320903pt;}
.ws7c{word-spacing:-2.199757pt;}
.ws6a{word-spacing:-2.135996pt;}
.ws57{word-spacing:-2.008474pt;}
.wsb2{word-spacing:-1.944713pt;}
.ws1b{word-spacing:-1.625907pt;}
.ws7e{word-spacing:-1.364487pt;}
.ws5e{word-spacing:-1.307102pt;}
.ws81{word-spacing:-1.243341pt;}
.ws7f{word-spacing:-1.179580pt;}
.wsba{word-spacing:-1.115819pt;}
.ws9b{word-spacing:-1.052058pt;}
.wsb3{word-spacing:-0.159403pt;}
.ws4a{word-spacing:-0.095642pt;}
.wse{word-spacing:-0.063761pt;}
.wsc8{word-spacing:-0.053134pt;}
.wsd{word-spacing:-0.031881pt;}
.ws1e{word-spacing:0.000000pt;}
.wsa2{word-spacing:2.263518pt;}
.wsa1{word-spacing:2.652460pt;}
.ws87{word-spacing:7.364403pt;}
.ws84{word-spacing:10.520576pt;}
.ws69{word-spacing:10.584337pt;}
.ws66{word-spacing:14.091196pt;}
.ws93{word-spacing:14.154957pt;}
.ws71{word-spacing:16.896683pt;}
.ws1c{word-spacing:17.374774pt;}
.ws77{word-spacing:17.598054pt;}
.ws6c{word-spacing:17.661815pt;}
.wsc4{word-spacing:17.693578pt;}
.ws9a{word-spacing:17.725577pt;}
.ws9e{word-spacing:18.363187pt;}
.wsc7{word-spacing:18.968790pt;}
.wsc1{word-spacing:20.562806pt;}
.ws76{word-spacing:20.913630pt;}
.ws82{word-spacing:21.168674pt;}
.ws31{word-spacing:21.870046pt;}
.ws2e{word-spacing:23.081506pt;}
.ws62{word-spacing:23.145267pt;}
.wsbf{word-spacing:23.485169pt;}
.ws80{word-spacing:24.292966pt;}
.wsc6{word-spacing:24.813516pt;}
.ws5{word-spacing:26.513799pt;}
.ws83{word-spacing:214.480906pt;}
.ws6b{word-spacing:482.065545pt;}
.ws34{word-spacing:657.696906pt;}
._2a{margin-left:-17.725577pt;}
._29{margin-left:-14.154957pt;}
._3{margin-left:-7.906372pt;}
._20{margin-left:-6.949956pt;}
._2{margin-left:-5.993540pt;}
._4{margin-left:-4.410111pt;}
._7{margin-left:-2.996762pt;}
._0{margin-left:-1.976593pt;}
._5{margin-left:-0.945770pt;}
._22{width:0.956416pt;}
._1{width:1.849071pt;}
._18{width:3.443098pt;}
._32{width:4.590778pt;}
._26{width:6.375045pt;}
._2f{width:8.586669pt;}
._25{width:10.648098pt;}
._9{width:14.122994pt;}
._30{width:15.111373pt;}
._31{width:16.099828pt;}
._e{width:17.343010pt;}
._c{width:18.809498pt;}
._24{width:20.212258pt;}
._8{width:21.997421pt;}
._f{width:23.081506pt;}
._2c{width:24.037922pt;}
._a{width:25.153573pt;}
._14{width:26.853868pt;}
._b{width:27.863586pt;}
._16{width:29.712657pt;}
._6{width:30.626387pt;}
._13{width:31.816772pt;}
._11{width:33.474560pt;}
._d{width:34.686003pt;}
._1b{width:36.280047pt;}
._21{width:37.172702pt;}
._1c{width:38.256640pt;}
._23{width:39.468100pt;}
._12{width:40.679561pt;}
._27{width:42.592335pt;}
._10{width:44.122658pt;}
._1a{width:45.280946pt;}
._17{width:46.864384pt;}
._1e{width:47.757039pt;}
._19{width:51.518942pt;}
._1f{width:58.596420pt;}
._2d{width:62.990249pt;}
._2b{width:80.240304pt;}
._28{width:122.474332pt;}
._2e{width:158.453637pt;}
._1d{width:1500.361660pt;}
._15{width:1703.313135pt;}
.fs3{font-size:42.507200pt;}
.fs2{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs0{font-size:63.761067pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:57.814667pt;}
.y88{bottom:106.853333pt;}
.y21{bottom:110.948000pt;}
.y87{bottom:117.786667pt;}
.y113{bottom:126.888000pt;}
.y20{bottom:126.889333pt;}
.y89{bottom:128.570667pt;}
.y4b{bottom:129.545333pt;}
.y1f{bottom:142.484000pt;}
.y112{bottom:142.829333pt;}
.y86{bottom:143.770667pt;}
.y4a{bottom:148.142667pt;}
.yab{bottom:150.348000pt;}
.ycd{bottom:152.480000pt;}
.y111{bottom:158.769333pt;}
.yac{bottom:164.738667pt;}
.y49{bottom:166.738667pt;}
.yce{bottom:166.870667pt;}
.y85{bottom:171.678667pt;}
.y1e{bottom:172.252000pt;}
.y110{bottom:174.709333pt;}
.y48{bottom:185.336000pt;}
.yaa{bottom:186.434667pt;}
.ycc{bottom:188.566667pt;}
.y10f{bottom:190.649333pt;}
.y1d{bottom:190.849333pt;}
.y84{bottom:199.733333pt;}
.ya9{bottom:203.416000pt;}
.y47{bottom:203.933333pt;}
.y10e{bottom:206.589333pt;}
.ycb{bottom:206.796000pt;}
.y1c{bottom:209.445333pt;}
.y83{bottom:218.329333pt;}
.ya8{bottom:222.013333pt;}
.y46{bottom:222.529333pt;}
.yec{bottom:222.530667pt;}
.y1b{bottom:228.042667pt;}
.yc9{bottom:230.460000pt;}
.y65{bottom:239.086667pt;}
.y45{bottom:241.126667pt;}
.yc8{bottom:241.394667pt;}
.y1a{bottom:246.640000pt;}
.y10d{bottom:247.768000pt;}
.y82{bottom:251.829333pt;}
.yca{bottom:252.178667pt;}
.ya7{bottom:253.881333pt;}
.y64{bottom:257.684000pt;}
.yeb{bottom:259.724000pt;}
.y19{bottom:265.237333pt;}
.yc7{bottom:271.793333pt;}
.y44{bottom:275.194667pt;}
.y63{bottom:276.281333pt;}
.y81{bottom:279.737333pt;}
.ya6{bottom:280.973333pt;}
.y10c{bottom:281.720000pt;}
.y18{bottom:283.833333pt;}
.yea{bottom:292.808000pt;}
.y43{bottom:293.792000pt;}
.y62{bottom:294.878667pt;}
.y10b{bottom:300.317333pt;}
.yc6{bottom:301.018667pt;}
.y17{bottom:302.430667pt;}
.y80{bottom:307.645333pt;}
.ya5{bottom:308.066667pt;}
.ye9{bottom:311.405333pt;}
.y42{bottom:312.389333pt;}
.y61{bottom:313.474667pt;}
.y10a{bottom:318.913333pt;}
.y16{bottom:321.028000pt;}
.y7f{bottom:326.241333pt;}
.ya1{bottom:328.868000pt;}
.yc5{bottom:330.242667pt;}
.y41{bottom:330.985333pt;}
.y60{bottom:332.072000pt;}
.ya4{bottom:332.325333pt;}
.ye8{bottom:334.032000pt;}
.y15{bottom:339.624000pt;}
.y109{bottom:341.174667pt;}
.ya2{bottom:343.258667pt;}
.y7e{bottom:344.838667pt;}
.ye7{bottom:344.966667pt;}
.yc4{bottom:348.840000pt;}
.y40{bottom:349.582667pt;}
.y5f{bottom:350.669333pt;}
.ya3{bottom:354.042667pt;}
.y14{bottom:358.221333pt;}
.y108{bottom:359.770667pt;}
.y7d{bottom:363.436000pt;}
.ya0{bottom:364.956000pt;}
.yc3{bottom:367.437333pt;}
.y5e{bottom:369.265333pt;}
.y13{bottom:376.818667pt;}
.y107{bottom:378.368000pt;}
.ye6{bottom:380.969333pt;}
.y9f{bottom:381.052000pt;}
.y7c{bottom:382.032000pt;}
.y3f{bottom:383.650667pt;}
.y5d{bottom:387.862667pt;}
.yc2{bottom:393.406667pt;}
.y12{bottom:395.414667pt;}
.y106{bottom:396.965333pt;}
.ye5{bottom:399.566667pt;}
.y7b{bottom:400.629333pt;}
.y9e{bottom:401.945333pt;}
.y3e{bottom:402.248000pt;}
.y5c{bottom:406.460000pt;}
.y9d{bottom:412.878667pt;}
.y11{bottom:414.012000pt;}
.y105{bottom:415.561333pt;}
.yc1{bottom:416.122667pt;}
.y7a{bottom:419.226667pt;}
.y3d{bottom:424.150667pt;}
.y10{bottom:432.609333pt;}
.ye4{bottom:432.650667pt;}
.y104{bottom:434.158667pt;}
.yc0{bottom:434.720000pt;}
.y3c{bottom:438.541333pt;}
.y5b{bottom:441.613333pt;}
.y9c{bottom:448.541333pt;}
.ye3{bottom:451.246667pt;}
.y78{bottom:451.397333pt;}
.y103{bottom:452.756000pt;}
.y5a{bottom:460.210667pt;}
.yf{bottom:460.504000pt;}
.y77{bottom:462.332000pt;}
.ye2{bottom:469.844000pt;}
.ybf{bottom:470.853333pt;}
.y9a{bottom:471.050667pt;}
.y79{bottom:473.116000pt;}
.y102{bottom:475.016000pt;}
.y3b{bottom:478.320000pt;}
.y59{bottom:478.808000pt;}
.y99{bottom:481.985333pt;}
.ye1{bottom:488.441333pt;}
.ybe{bottom:489.450667pt;}
.y9b{bottom:492.768000pt;}
.y3a{bottom:496.916000pt;}
.y58{bottom:497.404000pt;}
.y76{bottom:497.922667pt;}
.y101{bottom:504.546667pt;}
.ye0{bottom:507.037333pt;}
.y98{bottom:510.252000pt;}
.y39{bottom:515.513333pt;}
.y57{bottom:516.001333pt;}
.y75{bottom:516.520000pt;}
.ybd{bottom:518.674667pt;}
.y100{bottom:523.144000pt;}
.ydf{bottom:525.634667pt;}
.ye{bottom:527.130667pt;}
.y97{bottom:528.849333pt;}
.y38{bottom:534.110667pt;}
.y56{bottom:534.598667pt;}
.y74{bottom:535.117333pt;}
.yff{bottom:541.741333pt;}
.yd{bottom:543.070667pt;}
.yde{bottom:544.232000pt;}
.ybc{bottom:547.900000pt;}
.y37{bottom:552.706667pt;}
.y55{bottom:553.196000pt;}
.y73{bottom:553.713333pt;}
.yc{bottom:559.010667pt;}
.yfe{bottom:560.337333pt;}
.y96{bottom:560.717333pt;}
.yb9{bottom:570.833333pt;}
.y54{bottom:571.792000pt;}
.ybb{bottom:574.290667pt;}
.yb{bottom:574.952000pt;}
.y72{bottom:575.332000pt;}
.ydd{bottom:577.316000pt;}
.yfd{bottom:578.934667pt;}
.y95{bottom:579.314667pt;}
.y36{bottom:580.602667pt;}
.y53{bottom:590.389333pt;}
.ya{bottom:590.892000pt;}
.ydc{bottom:595.913333pt;}
.yba{bottom:596.008000pt;}
.y71{bottom:597.049333pt;}
.yfc{bottom:597.532000pt;}
.y94{bottom:597.910667pt;}
.y9{bottom:606.832000pt;}
.yb8{bottom:606.921333pt;}
.y52{bottom:608.986667pt;}
.ydb{bottom:614.509333pt;}
.y93{bottom:616.508000pt;}
.y35{bottom:621.036000pt;}
.y70{bottom:622.742667pt;}
.y8{bottom:622.772000pt;}
.yb7{bottom:625.149333pt;}
.yfb{bottom:627.062667pt;}
.yda{bottom:633.106667pt;}
.y92{bottom:638.284000pt;}
.y7{bottom:638.712000pt;}
.y34{bottom:639.632000pt;}
.y6f{bottom:641.340000pt;}
.y51{bottom:644.140000pt;}
.yfa{bottom:645.660000pt;}
.yb6{bottom:649.301333pt;}
.y91{bottom:652.674667pt;}
.y33{bottom:658.229333pt;}
.yb5{bottom:660.236000pt;}
.yd9{bottom:661.002667pt;}
.y50{bottom:662.737333pt;}
.yf9{bottom:664.257333pt;}
.y6e{bottom:665.993333pt;}
.y32{bottom:676.826667pt;}
.y6{bottom:677.217333pt;}
.y4f{bottom:681.334667pt;}
.yf8{bottom:682.853333pt;}
.y6d{bottom:687.392000pt;}
.y90{bottom:691.353333pt;}
.y31{bottom:695.424000pt;}
.yb4{bottom:699.593333pt;}
.y4e{bottom:699.930667pt;}
.yd8{bottom:700.029333pt;}
.yf7{bottom:701.450667pt;}
.y6c{bottom:705.989333pt;}
.y8f{bottom:709.950667pt;}
.y30{bottom:714.020000pt;}
.y5{bottom:717.068000pt;}
.yb3{bottom:718.190667pt;}
.y4d{bottom:718.528000pt;}
.yd7{bottom:718.626667pt;}
.yf6{bottom:730.981333pt;}
.y2f{bottom:732.617333pt;}
.y4{bottom:735.665333pt;}
.yb2{bottom:736.786667pt;}
.yd6{bottom:737.222667pt;}
.y6b{bottom:739.489333pt;}
.y8e{bottom:741.818667pt;}
.y4c{bottom:746.424000pt;}
.yf5{bottom:749.578667pt;}
.y2e{bottom:751.214667pt;}
.y3{bottom:754.262667pt;}
.yd5{bottom:755.820000pt;}
.y6a{bottom:758.085333pt;}
.y8d{bottom:760.416000pt;}
.yf4{bottom:768.176000pt;}
.y2d{bottom:769.810667pt;}
.yb1{bottom:772.920000pt;}
.y69{bottom:776.682667pt;}
.y8c{bottom:779.013333pt;}
.yd4{bottom:780.265333pt;}
.yf3{bottom:786.772000pt;}
.y2c{bottom:788.408000pt;}
.yb0{bottom:791.517333pt;}
.y68{bottom:795.280000pt;}
.y8b{bottom:797.609333pt;}
.yd3{bottom:801.457333pt;}
.yf2{bottom:805.369333pt;}
.y2b{bottom:807.005333pt;}
.yaf{bottom:810.114667pt;}
.y67{bottom:813.877333pt;}
.yd2{bottom:820.053333pt;}
.y2{bottom:822.928000pt;}
.yf1{bottom:823.966667pt;}
.y8a{bottom:825.505333pt;}
.y2a{bottom:825.601333pt;}
.y119{bottom:827.594667pt;}
.yae{bottom:828.710667pt;}
.yd0{bottom:838.209333pt;}
.y66{bottom:841.772000pt;}
.y118{bottom:843.534667pt;}
.y29{bottom:844.198667pt;}
.y1{bottom:845.317333pt;}
.yd1{bottom:852.600000pt;}
.yf0{bottom:853.497333pt;}
.yad{bottom:856.606667pt;}
.y117{bottom:859.474667pt;}
.y28{bottom:862.796000pt;}
.yef{bottom:872.094667pt;}
.ycf{bottom:874.297333pt;}
.y27{bottom:881.393333pt;}
.y116{bottom:889.362667pt;}
.yee{bottom:890.690667pt;}
.y26{bottom:899.989333pt;}
.y115{bottom:905.302667pt;}
.yed{bottom:909.288000pt;}
.y25{bottom:918.586667pt;}
.y114{bottom:921.242667pt;}
.y24{bottom:937.184000pt;}
.y23{bottom:974.642667pt;}
.h15{height:12.673330pt;}
.h1c{height:12.678663pt;}
.h7{height:29.499997pt;}
.h5{height:31.896474pt;}
.h1f{height:37.512510pt;}
.h3{height:40.859943pt;}
.h9{height:44.887791pt;}
.h1e{height:46.928145pt;}
.h8{height:47.820800pt;}
.hd{height:50.086858pt;}
.h18{height:51.408621pt;}
.he{height:54.592621pt;}
.h4{height:54.962039pt;}
.h1a{height:55.825330pt;}
.h2{height:57.066155pt;}
.h14{height:88.023791pt;}
.h17{height:88.626458pt;}
.h1d{height:90.033525pt;}
.h12{height:90.951467pt;}
.hb{height:90.956800pt;}
.ha{height:91.554133pt;}
.h16{height:94.539288pt;}
.h13{height:97.931776pt;}
.hc{height:97.937109pt;}
.h10{height:98.325955pt;}
.h19{height:98.331288pt;}
.h6{height:99.457330pt;}
.h11{height:99.462663pt;}
.h1b{height:99.563997pt;}
.hf{height:134.690133pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:110.406667pt;}
.x1{left:116.172000pt;}
.x3d{left:122.812000pt;}
.x8{left:132.112000pt;}
.x3e{left:143.470667pt;}
.xe{left:151.718667pt;}
.xb{left:154.342667pt;}
.x6{left:163.992000pt;}
.x3b{left:166.494667pt;}
.x1b{left:172.464000pt;}
.x2{left:181.436000pt;}
.x34{left:188.366667pt;}
.x4{left:192.420000pt;}
.x35{left:197.221333pt;}
.x1c{left:206.390667pt;}
.x36{left:212.457333pt;}
.x20{left:218.880000pt;}
.x1d{left:221.625333pt;}
.x3a{left:224.421333pt;}
.x17{left:226.285333pt;}
.x21{left:227.736000pt;}
.x2c{left:238.678667pt;}
.x22{left:240.314667pt;}
.x2d{left:247.534667pt;}
.x31{left:254.520000pt;}
.x1e{left:261.280000pt;}
.x3{left:262.190667pt;}
.xf{left:264.564000pt;}
.x2e{left:275.856000pt;}
.x30{left:286.489333pt;}
.x5{left:290.950667pt;}
.x29{left:298.389333pt;}
.x18{left:299.408000pt;}
.x16{left:305.580000pt;}
.x26{left:309.350667pt;}
.x37{left:314.429333pt;}
.xc{left:317.194667pt;}
.x27{left:318.206667pt;}
.x38{left:323.285333pt;}
.x32{left:327.642667pt;}
.x2a{left:330.669333pt;}
.xd{left:332.429333pt;}
.x28{left:333.442667pt;}
.x11{left:336.233333pt;}
.x12{left:337.549333pt;}
.x39{left:338.520000pt;}
.x19{left:341.150667pt;}
.x7{left:342.522667pt;}
.x15{left:345.069333pt;}
.x10{left:346.357333pt;}
.x2f{left:347.986667pt;}
.x3c{left:350.069333pt;}
.x9{left:396.565333pt;}
.x14{left:400.416000pt;}
.x1f{left:403.564000pt;}
.x13{left:404.850667pt;}
.x33{left:405.834667pt;}
.x23{left:409.497333pt;}
.x2b{left:415.284000pt;}
.x25{left:426.326667pt;}
.x24{left:430.761333pt;}
.x1a{left:457.484000pt;}
}




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