
    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_a9ccedaaaaabb14f8decff62.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.960938;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_5649748c18783912c2fa53be.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.988281;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_aa711efebf7c2247dedb5ba6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.972656;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_7f227e38ecd5ad3843c39cf6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.972656;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_8c0b23797c2357b567d90c81.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.029785;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_1f59558fc47294704b2f5941.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.816406;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_161fd40b4d1abbd21ae53258.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.960938;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_222f26a389365838b4dd3193.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.988281;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_418b96cdf7afc31c4f4bba6e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.708008;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_6901f7a9d4db58c5b967c602.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.029785;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_b11badef935b1c563f1111aa.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.758789;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.739746;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_cd030ee6f84e382ab1b04c90.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.065430;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_0304dfc31d0abddebe2f4ef9.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.100098;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_e2a835701892c61b2bc4ad4d.woff2')format("woff");}.fff{font-family:fff;line-height:1.100098;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_1fc6599c88c6086fc6fdd4a1.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.095215;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_f3c893b91ecf35646dcfb5ef.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.995117;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_e9cf6a0b5ac816c6ff501136.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.708008;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_0232a311d3a822d384dcd30f.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.027344;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_b16ba8da6aa13d701885e24b.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.027344;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.003906;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);}
.v2{vertical-align:-33.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls2b{letter-spacing:-32.400000px;}
.ls57{letter-spacing:-1.026000px;}
.ls20{letter-spacing:-1.008000px;}
.ls70{letter-spacing:-0.990000px;}
.ls14{letter-spacing:-0.948000px;}
.ls56{letter-spacing:-0.918000px;}
.ls5f{letter-spacing:-0.912000px;}
.ls52{letter-spacing:-0.786000px;}
.ls13{letter-spacing:-0.720000px;}
.ls58{letter-spacing:-0.702000px;}
.ls33{letter-spacing:-0.678000px;}
.ls50{letter-spacing:-0.630000px;}
.ls25{letter-spacing:-0.587400px;}
.ls1f{letter-spacing:-0.582000px;}
.ls73{letter-spacing:-0.501000px;}
.ls51{letter-spacing:-0.403200px;}
.ls3{letter-spacing:-0.306000px;}
.ls4f{letter-spacing:-0.305400px;}
.ls4b{letter-spacing:-0.299400px;}
.ls21{letter-spacing:-0.288000px;}
.lsf{letter-spacing:-0.270600px;}
.ls11{letter-spacing:-0.230400px;}
.ls26{letter-spacing:-0.195600px;}
.ls60{letter-spacing:-0.190200px;}
.ls2a{letter-spacing:-0.174000px;}
.ls5d{letter-spacing:-0.166800px;}
.ls12{letter-spacing:-0.144000px;}
.ls16{letter-spacing:-0.115200px;}
.ls5e{letter-spacing:-0.080400px;}
.ls53{letter-spacing:-0.063600px;}
.ls3e{letter-spacing:-0.043200px;}
.ls2{letter-spacing:0.000000px;}
.ls64{letter-spacing:0.005760px;}
.ls6d{letter-spacing:0.011520px;}
.lsd{letter-spacing:0.023040px;}
.ls3b{letter-spacing:0.025920px;}
.ls2f{letter-spacing:0.040320px;}
.ls69{letter-spacing:0.057600px;}
.ls24{letter-spacing:0.063360px;}
.ls1d{letter-spacing:0.092160px;}
.ls28{letter-spacing:0.092400px;}
.ls6e{letter-spacing:0.093600px;}
.ls72{letter-spacing:0.096000px;}
.ls23{letter-spacing:0.120000px;}
.ls2e{letter-spacing:0.120960px;}
.ls6f{letter-spacing:0.121200px;}
.lsb{letter-spacing:0.132480px;}
.ls15{letter-spacing:0.132600px;}
.ls4{letter-spacing:0.144000px;}
.ls6c{letter-spacing:0.153360px;}
.ls66{letter-spacing:0.155520px;}
.ls71{letter-spacing:0.161400px;}
.ls17{letter-spacing:0.180000px;}
.ls19{letter-spacing:0.190080px;}
.ls8{letter-spacing:0.195840px;}
.ls4e{letter-spacing:0.207600px;}
.ls18{letter-spacing:0.218880px;}
.ls22{letter-spacing:0.219000px;}
.lsa{letter-spacing:0.236160px;}
.ls6a{letter-spacing:0.275520px;}
.ls65{letter-spacing:0.276480px;}
.ls68{letter-spacing:0.281280px;}
.ls29{letter-spacing:0.285120px;}
.ls6{letter-spacing:0.287280px;}
.ls27{letter-spacing:0.288000px;}
.ls31{letter-spacing:0.299520px;}
.ls30{letter-spacing:0.305280px;}
.ls10{letter-spacing:0.305400px;}
.ls34{letter-spacing:0.311040px;}
.ls35{letter-spacing:0.313920px;}
.ls2d{letter-spacing:0.316800px;}
.ls1e{letter-spacing:0.328200px;}
.ls74{letter-spacing:0.333600px;}
.ls9{letter-spacing:0.334080px;}
.ls4c{letter-spacing:0.336000px;}
.ls0{letter-spacing:0.342000px;}
.ls5b{letter-spacing:0.351600px;}
.lse{letter-spacing:0.360000px;}
.ls75{letter-spacing:0.364200px;}
.ls63{letter-spacing:0.393120px;}
.ls67{letter-spacing:0.449280px;}
.ls62{letter-spacing:0.460800px;}
.ls6b{letter-spacing:0.479520px;}
.ls5{letter-spacing:0.720000px;}
.lsc{letter-spacing:0.852480px;}
.ls5c{letter-spacing:1.080000px;}
.ls5a{letter-spacing:14.849280px;}
.ls45{letter-spacing:14.929920px;}
.ls49{letter-spacing:15.120000px;}
.ls48{letter-spacing:15.137280px;}
.ls41{letter-spacing:15.143040px;}
.ls44{letter-spacing:15.212160px;}
.ls55{letter-spacing:15.263040px;}
.ls3f{letter-spacing:15.436800px;}
.ls42{letter-spacing:15.471360px;}
.ls4d{letter-spacing:15.556800px;}
.ls1c{letter-spacing:15.569280px;}
.ls59{letter-spacing:15.672960px;}
.ls1b{letter-spacing:15.689280px;}
.ls1a{letter-spacing:15.840000px;}
.ls46{letter-spacing:15.857280px;}
.ls43{letter-spacing:15.863040px;}
.ls40{letter-spacing:15.932160px;}
.ls54{letter-spacing:15.983040px;}
.ls4a{letter-spacing:16.156800px;}
.ls47{letter-spacing:16.191360px;}
.ls7{letter-spacing:67.345920px;}
.ls2c{letter-spacing:68.065920px;}
.ls32{letter-spacing:848.280000px;}
.ls61{letter-spacing:848.340000px;}
.ls1{letter-spacing:850.620000px;}
.ls36{letter-spacing:2233.704000px;}
.ls37{letter-spacing:2309.304000px;}
.ls38{letter-spacing:2328.744000px;}
.ls3a{letter-spacing:2334.504000px;}
.ls3d{letter-spacing:2335.944000px;}
.ls3c{letter-spacing:2400.024000px;}
.ls39{letter-spacing:2442.504000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(15,20,25),0 0.015em rgb(15,20,25),0.015em 0 rgb(15,20,25),0 -0.015em  rgb(15,20,25);}
.sc3{text-shadow:-0.015em 0 rgb(90,90,90),0 0.015em rgb(90,90,90),0.015em 0 rgb(90,90,90),0 -0.015em  rgb(90,90,90);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(15,20,25);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(90,90,90);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-144.144000px;}
.ws3{word-spacing:-144.000000px;}
.wsa{word-spacing:-96.480000px;}
.ws9{word-spacing:-95.760000px;}
.ws5b{word-spacing:-90.720000px;}
.ws17{word-spacing:-90.000000px;}
.ws5{word-spacing:-72.000000px;}
.ws25{word-spacing:-66.240000px;}
.wsc{word-spacing:-63.360000px;}
.ws1d{word-spacing:-62.772600px;}
.ws12{word-spacing:-62.640000px;}
.ws6{word-spacing:-54.720000px;}
.ws0{word-spacing:-54.000000px;}
.ws3d{word-spacing:-48.332160px;}
.ws4a{word-spacing:-48.309120px;}
.ws46{word-spacing:-48.258240px;}
.ws29{word-spacing:-48.240000px;}
.ws39{word-spacing:-48.235200px;}
.ws37{word-spacing:-48.212160px;}
.ws43{word-spacing:-48.198240px;}
.ws44{word-spacing:-48.175200px;}
.ws24{word-spacing:-48.167280px;}
.ws35{word-spacing:-48.166080px;}
.ws2c{word-spacing:-48.143040px;}
.ws50{word-spacing:-48.129120px;}
.ws47{word-spacing:-48.120000px;}
.ws2f{word-spacing:-47.880000px;}
.ws42{word-spacing:-47.635200px;}
.ws45{word-spacing:-47.612160px;}
.ws48{word-spacing:-47.589120px;}
.ws2d{word-spacing:-47.566080px;}
.ws2a{word-spacing:-47.520000px;}
.ws41{word-spacing:-47.515200px;}
.ws3f{word-spacing:-47.501280px;}
.ws40{word-spacing:-47.492160px;}
.ws38{word-spacing:-47.478240px;}
.ws4b{word-spacing:-47.469120px;}
.ws3c{word-spacing:-47.446080px;}
.ws49{word-spacing:-47.409120px;}
.ws53{word-spacing:-47.386080px;}
.ws1b{word-spacing:-47.363040px;}
.ws2b{word-spacing:-46.800000px;}
.ws2e{word-spacing:-46.080000px;}
.ws1{word-spacing:-27.000000px;}
.ws5a{word-spacing:-19.800000px;}
.ws26{word-spacing:-18.216000px;}
.ws28{word-spacing:-18.172800px;}
.ws3a{word-spacing:-17.677440px;}
.wsf{word-spacing:-17.666040px;}
.ws1a{word-spacing:-17.579640px;}
.ws30{word-spacing:-17.568240px;}
.ws5e{word-spacing:-17.522040px;}
.ws15{word-spacing:-17.493240px;}
.ws5c{word-spacing:-17.481840px;}
.ws4d{word-spacing:-17.453040px;}
.ws1e{word-spacing:-17.424000px;}
.ws22{word-spacing:-17.400960px;}
.wsd{word-spacing:-17.360640px;}
.ws36{word-spacing:-17.297040px;}
.ws16{word-spacing:-17.245440px;}
.ws11{word-spacing:-17.216640px;}
.ws23{word-spacing:-17.165040px;}
.ws10{word-spacing:-17.130240px;}
.ws19{word-spacing:-17.090040px;}
.ws31{word-spacing:-17.055240px;}
.ws33{word-spacing:-16.957440px;}
.ws61{word-spacing:-16.859640px;}
.ws32{word-spacing:-16.730640px;}
.ws21{word-spacing:-16.682640px;}
.ws4c{word-spacing:-16.658640px;}
.ws34{word-spacing:-16.574640px;}
.ws58{word-spacing:-16.448640px;}
.ws3b{word-spacing:-16.442640px;}
.ws14{word-spacing:-16.412640px;}
.ws5d{word-spacing:-16.370640px;}
.ws18{word-spacing:-16.352640px;}
.ws3e{word-spacing:-16.334640px;}
.ws27{word-spacing:-14.850000px;}
.ws2{word-spacing:-14.796000px;}
.ws62{word-spacing:-14.160240px;}
.wse{word-spacing:-14.006880px;}
.ws1f{word-spacing:-2.720400px;}
.ws52{word-spacing:-2.494800px;}
.ws54{word-spacing:-2.465280px;}
.ws55{word-spacing:-2.430720px;}
.ws51{word-spacing:-2.424960px;}
.ws57{word-spacing:-2.407680px;}
.ws60{word-spacing:-1.970280px;}
.ws4f{word-spacing:-1.785600px;}
.ws4e{word-spacing:-1.756800px;}
.ws56{word-spacing:-1.687680px;}
.ws59{word-spacing:-1.508760px;}
.ws13{word-spacing:-1.290240px;}
.ws1c{word-spacing:-1.250280px;}
.ws5f{word-spacing:-1.130520px;}
.wsb{word-spacing:-1.106280px;}
.ws7{word-spacing:-0.630000px;}
.ws8{word-spacing:0.000000px;}
.ws20{word-spacing:1.440000px;}
._4{margin-left:-33.222000px;}
._3{margin-left:-31.708560px;}
._e{margin-left:-30.704160px;}
._2{margin-left:-27.240000px;}
._5{margin-left:-2.184480px;}
._0{margin-left:-1.062000px;}
._1{width:1.902000px;}
._d{width:14.601840px;}
._c{width:16.019040px;}
._6{width:1584.155760px;}
._7{width:2256.074880px;}
._9{width:2310.768960px;}
._a{width:2323.753440px;}
._8{width:2378.396400px;}
._b{width:2535.365040px;}
.fc7{color:rgb(15,20,25);}
.fc8{color:rgb(90,90,90);}
.fc6{color:rgb(64,64,64);}
.fc4{color:rgb(127,127,127);}
.fc3{color:rgb(0,0,0);}
.fc5{color:rgb(91,155,213);}
.fc2{color:rgb(68,114,196);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,112,192);}
.fs8{font-size:33.120000px;}
.fs6{font-size:51.120000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:63.360000px;}
.fs9{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs7{font-size:90.000000px;}
.fs4{font-size:95.760000px;}
.fs2{font-size:144.000000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y4{bottom:79.416000px;}
.y3{bottom:97.776000px;}
.y30{bottom:120.456000px;}
.y69{bottom:121.716000px;}
.y86{bottom:125.676000px;}
.y13d{bottom:127.116000px;}
.y118{bottom:127.296000px;}
.y123{bottom:131.796000px;}
.ye5{bottom:133.776000px;}
.yaf{bottom:136.296000px;}
.y116{bottom:138.996000px;}
.y4c{bottom:140.976000px;}
.y9a{bottom:141.336000px;}
.yef{bottom:142.056000px;}
.y11b{bottom:151.590000px;}
.y117{bottom:152.130000px;}
.y2f{bottom:155.550000px;}
.yc5{bottom:155.730000px;}
.y68{bottom:156.810000px;}
.yd3{bottom:157.170000px;}
.yff{bottom:158.070000px;}
.yfd{bottom:159.870000px;}
.y104{bottom:160.410000px;}
.y85{bottom:160.770000px;}
.ye4{bottom:160.950000px;}
.y13c{bottom:162.210000px;}
.y101{bottom:162.570000px;}
.y122{bottom:163.470000px;}
.y115{bottom:163.830000px;}
.ye9{bottom:168.150000px;}
.yee{bottom:169.770000px;}
.yf7{bottom:172.290000px;}
.yae{bottom:172.470000px;}
.y4b{bottom:175.350000px;}
.ye2{bottom:178.410000px;}
.yc9{bottom:180.570000px;}
.ye0{bottom:183.270000px;}
.yc4{bottom:183.630000px;}
.ydb{bottom:185.070000px;}
.yd2{bottom:185.250000px;}
.yf9{bottom:185.610000px;}
.y113{bottom:185.790000px;}
.y2e{bottom:190.650000px;}
.y67{bottom:190.830000px;}
.y84{bottom:194.790000px;}
.y10e{bottom:198.390000px;}
.ye8{bottom:200.010000px;}
.yf5{bottom:200.190000px;}
.yd7{bottom:203.970000px;}
.ydc{bottom:204.870000px;}
.ycc{bottom:206.850000px;}
.yc8{bottom:207.210000px;}
.yad{bottom:207.570000px;}
.yd0{bottom:208.470000px;}
.yfb{bottom:209.010000px;}
.y103{bottom:210.090000px;}
.ycd{bottom:210.270000px;}
.y112{bottom:210.630000px;}
.y4a{bottom:211.170000px;}
.y99{bottom:211.530000px;}
.y11a{bottom:214.950000px;}
.yf4{bottom:219.090000px;}
.y13b{bottom:220.170000px;}
.y10d{bottom:223.050000px;}
.y109{bottom:223.230000px;}
.yf2{bottom:223.410000px;}
.y2d{bottom:225.750000px;}
.y119{bottom:226.650000px;}
.y66{bottom:227.010000px;}
.ycb{bottom:227.370000px;}
.y83{bottom:230.970000px;}
.yd6{bottom:232.050000px;}
.yde{bottom:232.410000px;}
.y111{bottom:232.590000px;}
.yac{bottom:242.670000px;}
.y49{bottom:246.270000px;}
.y98{bottom:246.630000px;}
.yf3{bottom:246.990000px;}
.yca{bottom:255.270000px;}
.yd9{bottom:255.450000px;}
.y110{bottom:258.690000px;}
.y2c{bottom:260.850000px;}
.y65{bottom:262.110000px;}
.y82{bottom:266.070000px;}
.y108{bottom:274.170000px;}
.yab{bottom:277.770000px;}
.y13a{bottom:278.310000px;}
.y48{bottom:280.650000px;}
.y97{bottom:281.730000px;}
.y14e{bottom:286.950000px;}
.y2b{bottom:295.950000px;}
.y64{bottom:296.130000px;}
.y81{bottom:300.090000px;}
.y107{bottom:301.530000px;}
.y139{bottom:307.650000px;}
.yaa{bottom:311.790000px;}
.y96{bottom:315.750000px;}
.y47{bottom:316.470000px;}
.y14d{bottom:322.050000px;}
.y18{bottom:327.090000px;}
.y2a{bottom:331.050000px;}
.y63{bottom:331.230000px;}
.y80{bottom:336.270000px;}
.y138{bottom:342.795000px;}
.ya9{bottom:346.935000px;}
.y46{bottom:351.615000px;}
.y17{bottom:356.115000px;}
.y14c{bottom:356.835000px;}
.y29{bottom:366.195000px;}
.y62{bottom:367.455000px;}
.y7f{bottom:371.415000px;}
.ya8{bottom:376.095000px;}
.y137{bottom:376.815000px;}
.y45{bottom:386.715000px;}
.y95{bottom:387.075000px;}
.y16{bottom:391.215000px;}
.y14b{bottom:392.295000px;}
.y28{bottom:401.295000px;}
.y61{bottom:402.195000px;}
.y7e{bottom:406.515000px;}
.y136{bottom:412.995000px;}
.y44{bottom:420.555000px;}
.y94{bottom:422.175000px;}
.y15{bottom:426.315000px;}
.yc0{bottom:427.215000px;}
.y14a{bottom:427.395000px;}
.y27{bottom:436.395000px;}
.y60{bottom:436.575000px;}
.y7d{bottom:441.615000px;}
.y135{bottom:448.095000px;}
.y43{bottom:455.655000px;}
.y93{bottom:456.915000px;}
.y14{bottom:461.415000px;}
.y149{bottom:462.135000px;}
.y26{bottom:471.495000px;}
.y5f{bottom:471.675000px;}
.y7c{bottom:476.715000px;}
.ybf{bottom:477.435000px;}
.y134{bottom:483.195000px;}
.y42{bottom:490.395000px;}
.y92{bottom:492.015000px;}
.y13{bottom:495.795000px;}
.y148{bottom:497.235000px;}
.y5e{bottom:507.855000px;}
.y7b{bottom:511.815000px;}
.y133{bottom:517.215000px;}
.y41{bottom:525.495000px;}
.y91{bottom:527.115000px;}
.ybe{bottom:527.835000px;}
.y12{bottom:531.975000px;}
.y147{bottom:532.335000px;}
.y5d{bottom:542.955000px;}
.y7a{bottom:545.835000px;}
.ya7{bottom:546.915000px;}
.y132{bottom:552.315000px;}
.y40{bottom:560.595000px;}
.y90{bottom:562.575000px;}
.y11{bottom:565.995000px;}
.y146{bottom:567.435000px;}
.y5c{bottom:578.055000px;}
.ybd{bottom:578.235000px;}
.y79{bottom:580.935000px;}
.ya6{bottom:582.015000px;}
.y121{bottom:588.135000px;}
.y131{bottom:588.495000px;}
.y3f{bottom:595.695000px;}
.y8f{bottom:597.675000px;}
.y145{bottom:602.895000px;}
.y10{bottom:607.065000px;}
.y5b{bottom:612.105000px;}
.yed{bottom:613.545000px;}
.y78{bottom:616.785000px;}
.ya5{bottom:617.145000px;}
.y120{bottom:619.845000px;}
.y130{bottom:623.625000px;}
.yc3{bottom:627.405000px;}
.ybc{bottom:628.665000px;}
.y3e{bottom:631.545000px;}
.y8e{bottom:632.625000px;}
.y144{bottom:637.665000px;}
.yec{bottom:639.465000px;}
.y10c{bottom:643.065000px;}
.y25{bottom:647.025000px;}
.y5a{bottom:647.205000px;}
.yda{bottom:647.925000px;}
.ya4{bottom:651.165000px;}
.y77{bottom:651.885000px;}
.ycf{bottom:652.065000px;}
.yf{bottom:652.245000px;}
.yd1{bottom:652.425000px;}
.y114{bottom:653.865000px;}
.y11d{bottom:654.045000px;}
.yc2{bottom:655.305000px;}
.y12f{bottom:657.645000px;}
.yea{bottom:665.745000px;}
.y3d{bottom:666.105000px;}
.y8d{bottom:667.365000px;}
.y10b{bottom:667.725000px;}
.yf8{bottom:671.865000px;}
.yf6{bottom:672.945000px;}
.yd5{bottom:675.465000px;}
.yfe{bottom:676.365000px;}
.y11c{bottom:677.265000px;}
.yfc{bottom:678.165000px;}
.yf1{bottom:678.345000px;}
.ye3{bottom:678.705000px;}
.ybb{bottom:679.065000px;}
.ye1{bottom:680.505000px;}
.y100{bottom:680.865000px;}
.yce{bottom:681.765000px;}
.y24{bottom:682.125000px;}
.y59{bottom:683.385000px;}
.y76{bottom:686.985000px;}
.y12e{bottom:693.825000px;}
.ye7{bottom:694.725000px;}
.ydf{bottom:696.345000px;}
.yd4{bottom:698.325000px;}
.yc7{bottom:698.865000px;}
.ye{bottom:699.045000px;}
.y10f{bottom:700.665000px;}
.y3c{bottom:700.845000px;}
.y8c{bottom:701.745000px;}
.yfa{bottom:703.905000px;}
.y143{bottom:704.445000px;}
.y102{bottom:704.985000px;}
.y23{bottom:717.225000px;}
.ye6{bottom:717.585000px;}
.y58{bottom:718.485000px;}
.ydd{bottom:719.025000px;}
.ya3{bottom:722.085000px;}
.y106{bottom:722.265000px;}
.y75{bottom:722.445000px;}
.yf0{bottom:725.685000px;}
.y124{bottom:726.405000px;}
.yc6{bottom:726.765000px;}
.yd8{bottom:726.945000px;}
.y12d{bottom:728.925000px;}
.yba{bottom:729.465000px;}
.y3b{bottom:735.945000px;}
.y8b{bottom:737.925000px;}
.yd{bottom:745.845000px;}
.y105{bottom:749.625000px;}
.y22{bottom:752.325000px;}
.y57{bottom:753.585000px;}
.ya2{bottom:756.465000px;}
.y74{bottom:757.545000px;}
.y12c{bottom:762.945000px;}
.y3a{bottom:771.045000px;}
.y8a{bottom:773.025000px;}
.y142{bottom:779.685000px;}
.yb9{bottom:779.865000px;}
.y21{bottom:786.345000px;}
.yc{bottom:788.325000px;}
.y56{bottom:788.685000px;}
.y73{bottom:791.565000px;}
.ya1{bottom:792.645000px;}
.y12b{bottom:799.125000px;}
.y39{bottom:807.045000px;}
.y89{bottom:808.125000px;}
.y20{bottom:821.445000px;}
.yb{bottom:821.805000px;}
.y55{bottom:822.705000px;}
.y141{bottom:822.885000px;}
.y72{bottom:827.745000px;}
.yb8{bottom:830.265000px;}
.y12a{bottom:834.225000px;}
.y38{bottom:842.145000px;}
.y1f{bottom:856.545000px;}
.ya{bottom:856.905000px;}
.y54{bottom:857.805000px;}
.y140{bottom:858.885000px;}
.y71{bottom:862.845000px;}
.y129{bottom:868.245000px;}
.y37{bottom:876.390000px;}
.y88{bottom:878.010000px;}
.yb7{bottom:880.710000px;}
.y9{bottom:892.050000px;}
.y1e{bottom:892.770000px;}
.y53{bottom:893.670000px;}
.y13f{bottom:894.030000px;}
.y70{bottom:896.910000px;}
.ya0{bottom:897.990000px;}
.yb2{bottom:899.790000px;}
.yb6{bottom:904.110000px;}
.y128{bottom:904.470000px;}
.y36{bottom:911.490000px;}
.y1d{bottom:926.790000px;}
.y8{bottom:927.150000px;}
.yb5{bottom:927.510000px;}
.y52{bottom:929.130000px;}
.y9f{bottom:932.010000px;}
.y6f{bottom:932.730000px;}
.y87{bottom:935.250000px;}
.y127{bottom:938.490000px;}
.y35{bottom:946.590000px;}
.yb4{bottom:950.910000px;}
.y1c{bottom:962.970000px;}
.y13e{bottom:963.150000px;}
.y51{bottom:964.230000px;}
.y9e{bottom:967.110000px;}
.y6e{bottom:968.190000px;}
.y126{bottom:974.670000px;}
.y7{bottom:974.850000px;}
.y34{bottom:982.590000px;}
.y1b{bottom:997.710000px;}
.y50{bottom:999.330000px;}
.yb3{bottom:1001.490000px;}
.y9d{bottom:1002.210000px;}
.y6d{bottom:1003.290000px;}
.y125{bottom:1008.690000px;}
.yb1{bottom:1033.350000px;}
.y4f{bottom:1034.430000px;}
.y6c{bottom:1038.030000px;}
.y9c{bottom:1038.390000px;}
.y33{bottom:1040.550000px;}
.y6{bottom:1043.970000px;}
.y1a{bottom:1064.490000px;}
.yb0{bottom:1068.450000px;}
.yeb{bottom:1069.350000px;}
.y4e{bottom:1069.530000px;}
.y9b{bottom:1072.410000px;}
.y6b{bottom:1073.130000px;}
.y11f{bottom:1076.190000px;}
.y32{bottom:1104.630000px;}
.y5{bottom:1117.050000px;}
.y10a{bottom:1125.150000px;}
.yc1{bottom:1130.010000px;}
.y6a{bottom:1130.190000px;}
.y4d{bottom:1139.400000px;}
.y31{bottom:1139.760000px;}
.y19{bottom:1140.480000px;}
.y11e{bottom:1145.520000px;}
.y2{bottom:1167.120000px;}
.y1{bottom:1185.480000px;}
.h3{height:40.842773px;}
.h4{height:44.296875px;}
.h2{height:44.718750px;}
.hb{height:47.922187px;}
.h11{height:50.397188px;}
.hc{height:50.551875px;}
.ha{height:52.470000px;}
.h13{height:52.687969px;}
.h10{height:53.398125px;}
.he{height:54.790312px;}
.hf{height:54.821250px;}
.h12{height:58.170234px;}
.h8{height:59.625000px;}
.h14{height:63.019687px;}
.hd{height:76.201172px;}
.h9{height:79.301250px;}
.h7{height:118.125000px;}
.h5{height:124.656328px;}
.h6{height:125.114063px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:53.999987px;}
.xc{left:68.939987px;}
.x14{left:80.999987px;}
.xd{left:85.499987px;}
.x10{left:86.939987px;}
.x12{left:92.375987px;}
.x43{left:101.375987px;}
.x44{left:117.035987px;}
.x11{left:120.095987px;}
.x3{left:138.275987px;}
.x1{left:165.269987px;}
.x2{left:240.689987px;}
.x4{left:260.849987px;}
.x6{left:292.754987px;}
.x8{left:382.034987px;}
.x7{left:385.634987px;}
.x9{left:404.534987px;}
.x37{left:421.094987px;}
.x26{left:425.594987px;}
.xa{left:427.034987px;}
.x5{left:446.474987px;}
.x1e{left:447.734987px;}
.x1b{left:463.574987px;}
.x17{left:468.104987px;}
.x3d{left:474.944987px;}
.x27{left:486.104987px;}
.x3a{left:508.604987px;}
.x1d{left:510.764987px;}
.x15{left:513.644987px;}
.x3b{left:515.444987px;}
.x3f{left:517.964987px;}
.x13{left:529.844987px;}
.x3c{left:536.684987px;}
.x38{left:556.664987px;}
.x39{left:561.164987px;}
.x16{left:583.664987px;}
.x28{left:588.164987px;}
.x19{left:594.644987px;}
.x2d{left:615.164987px;}
.x42{left:617.504987px;}
.x1c{left:619.664987px;}
.x40{left:621.284987px;}
.x2f{left:624.164987px;}
.x18{left:626.504987px;}
.x1f{left:627.764987px;}
.x41{left:631.004987px;}
.x2c{left:636.944987px;}
.x25{left:643.784987px;}
.x21{left:651.344987px;}
.x24{left:652.604987px;}
.x2e{left:655.709987px;}
.x30{left:657.869987px;}
.x2a{left:669.209987px;}
.x31{left:672.809987px;}
.x2b{left:675.149987px;}
.x23{left:677.309987px;}
.x34{left:680.369987px;}
.x1a{left:681.809987px;}
.x29{left:686.849987px;}
.x32{left:695.309987px;}
.x36{left:698.189987px;}
.x33{left:702.869987px;}
.x22{left:708.809987px;}
.x35{left:715.649987px;}
.x3e{left:718.169987px;}
.x20{left:724.649987px;}
.xf{left:744.989987px;}
.xb{left:839.129987px;}
@media print{
.v2{vertical-align:-29.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls2b{letter-spacing:-28.800000pt;}
.ls57{letter-spacing:-0.912000pt;}
.ls20{letter-spacing:-0.896000pt;}
.ls70{letter-spacing:-0.880000pt;}
.ls14{letter-spacing:-0.842667pt;}
.ls56{letter-spacing:-0.816000pt;}
.ls5f{letter-spacing:-0.810667pt;}
.ls52{letter-spacing:-0.698667pt;}
.ls13{letter-spacing:-0.640000pt;}
.ls58{letter-spacing:-0.624000pt;}
.ls33{letter-spacing:-0.602667pt;}
.ls50{letter-spacing:-0.560000pt;}
.ls25{letter-spacing:-0.522133pt;}
.ls1f{letter-spacing:-0.517333pt;}
.ls73{letter-spacing:-0.445333pt;}
.ls51{letter-spacing:-0.358400pt;}
.ls3{letter-spacing:-0.272000pt;}
.ls4f{letter-spacing:-0.271467pt;}
.ls4b{letter-spacing:-0.266133pt;}
.ls21{letter-spacing:-0.256000pt;}
.lsf{letter-spacing:-0.240533pt;}
.ls11{letter-spacing:-0.204800pt;}
.ls26{letter-spacing:-0.173867pt;}
.ls60{letter-spacing:-0.169067pt;}
.ls2a{letter-spacing:-0.154667pt;}
.ls5d{letter-spacing:-0.148267pt;}
.ls12{letter-spacing:-0.128000pt;}
.ls16{letter-spacing:-0.102400pt;}
.ls5e{letter-spacing:-0.071467pt;}
.ls53{letter-spacing:-0.056533pt;}
.ls3e{letter-spacing:-0.038400pt;}
.ls2{letter-spacing:0.000000pt;}
.ls64{letter-spacing:0.005120pt;}
.ls6d{letter-spacing:0.010240pt;}
.lsd{letter-spacing:0.020480pt;}
.ls3b{letter-spacing:0.023040pt;}
.ls2f{letter-spacing:0.035840pt;}
.ls69{letter-spacing:0.051200pt;}
.ls24{letter-spacing:0.056320pt;}
.ls1d{letter-spacing:0.081920pt;}
.ls28{letter-spacing:0.082133pt;}
.ls6e{letter-spacing:0.083200pt;}
.ls72{letter-spacing:0.085333pt;}
.ls23{letter-spacing:0.106667pt;}
.ls2e{letter-spacing:0.107520pt;}
.ls6f{letter-spacing:0.107733pt;}
.lsb{letter-spacing:0.117760pt;}
.ls15{letter-spacing:0.117867pt;}
.ls4{letter-spacing:0.128000pt;}
.ls6c{letter-spacing:0.136320pt;}
.ls66{letter-spacing:0.138240pt;}
.ls71{letter-spacing:0.143467pt;}
.ls17{letter-spacing:0.160000pt;}
.ls19{letter-spacing:0.168960pt;}
.ls8{letter-spacing:0.174080pt;}
.ls4e{letter-spacing:0.184533pt;}
.ls18{letter-spacing:0.194560pt;}
.ls22{letter-spacing:0.194667pt;}
.lsa{letter-spacing:0.209920pt;}
.ls6a{letter-spacing:0.244907pt;}
.ls65{letter-spacing:0.245760pt;}
.ls68{letter-spacing:0.250027pt;}
.ls29{letter-spacing:0.253440pt;}
.ls6{letter-spacing:0.255360pt;}
.ls27{letter-spacing:0.256000pt;}
.ls31{letter-spacing:0.266240pt;}
.ls30{letter-spacing:0.271360pt;}
.ls10{letter-spacing:0.271467pt;}
.ls34{letter-spacing:0.276480pt;}
.ls35{letter-spacing:0.279040pt;}
.ls2d{letter-spacing:0.281600pt;}
.ls1e{letter-spacing:0.291733pt;}
.ls74{letter-spacing:0.296533pt;}
.ls9{letter-spacing:0.296960pt;}
.ls4c{letter-spacing:0.298667pt;}
.ls0{letter-spacing:0.304000pt;}
.ls5b{letter-spacing:0.312533pt;}
.lse{letter-spacing:0.320000pt;}
.ls75{letter-spacing:0.323733pt;}
.ls63{letter-spacing:0.349440pt;}
.ls67{letter-spacing:0.399360pt;}
.ls62{letter-spacing:0.409600pt;}
.ls6b{letter-spacing:0.426240pt;}
.ls5{letter-spacing:0.640000pt;}
.lsc{letter-spacing:0.757760pt;}
.ls5c{letter-spacing:0.960000pt;}
.ls5a{letter-spacing:13.199360pt;}
.ls45{letter-spacing:13.271040pt;}
.ls49{letter-spacing:13.440000pt;}
.ls48{letter-spacing:13.455360pt;}
.ls41{letter-spacing:13.460480pt;}
.ls44{letter-spacing:13.521920pt;}
.ls55{letter-spacing:13.567147pt;}
.ls3f{letter-spacing:13.721600pt;}
.ls42{letter-spacing:13.752320pt;}
.ls4d{letter-spacing:13.828267pt;}
.ls1c{letter-spacing:13.839360pt;}
.ls59{letter-spacing:13.931520pt;}
.ls1b{letter-spacing:13.946027pt;}
.ls1a{letter-spacing:14.080000pt;}
.ls46{letter-spacing:14.095360pt;}
.ls43{letter-spacing:14.100480pt;}
.ls40{letter-spacing:14.161920pt;}
.ls54{letter-spacing:14.207147pt;}
.ls4a{letter-spacing:14.361600pt;}
.ls47{letter-spacing:14.392320pt;}
.ls7{letter-spacing:59.863040pt;}
.ls2c{letter-spacing:60.503040pt;}
.ls32{letter-spacing:754.026667pt;}
.ls61{letter-spacing:754.080000pt;}
.ls1{letter-spacing:756.106667pt;}
.ls36{letter-spacing:1985.514667pt;}
.ls37{letter-spacing:2052.714667pt;}
.ls38{letter-spacing:2069.994667pt;}
.ls3a{letter-spacing:2075.114667pt;}
.ls3d{letter-spacing:2076.394667pt;}
.ls3c{letter-spacing:2133.354667pt;}
.ls39{letter-spacing:2171.114667pt;}
.ws4{word-spacing:-128.128000pt;}
.ws3{word-spacing:-128.000000pt;}
.wsa{word-spacing:-85.760000pt;}
.ws9{word-spacing:-85.120000pt;}
.ws5b{word-spacing:-80.640000pt;}
.ws17{word-spacing:-80.000000pt;}
.ws5{word-spacing:-64.000000pt;}
.ws25{word-spacing:-58.880000pt;}
.wsc{word-spacing:-56.320000pt;}
.ws1d{word-spacing:-55.797867pt;}
.ws12{word-spacing:-55.680000pt;}
.ws6{word-spacing:-48.640000pt;}
.ws0{word-spacing:-48.000000pt;}
.ws3d{word-spacing:-42.961920pt;}
.ws4a{word-spacing:-42.941440pt;}
.ws46{word-spacing:-42.896213pt;}
.ws29{word-spacing:-42.880000pt;}
.ws39{word-spacing:-42.875733pt;}
.ws37{word-spacing:-42.855253pt;}
.ws43{word-spacing:-42.842880pt;}
.ws44{word-spacing:-42.822400pt;}
.ws24{word-spacing:-42.815360pt;}
.ws35{word-spacing:-42.814293pt;}
.ws2c{word-spacing:-42.793813pt;}
.ws50{word-spacing:-42.781440pt;}
.ws47{word-spacing:-42.773333pt;}
.ws2f{word-spacing:-42.560000pt;}
.ws42{word-spacing:-42.342400pt;}
.ws45{word-spacing:-42.321920pt;}
.ws48{word-spacing:-42.301440pt;}
.ws2d{word-spacing:-42.280960pt;}
.ws2a{word-spacing:-42.240000pt;}
.ws41{word-spacing:-42.235733pt;}
.ws3f{word-spacing:-42.223360pt;}
.ws40{word-spacing:-42.215253pt;}
.ws38{word-spacing:-42.202880pt;}
.ws4b{word-spacing:-42.194773pt;}
.ws3c{word-spacing:-42.174293pt;}
.ws49{word-spacing:-42.141440pt;}
.ws53{word-spacing:-42.120960pt;}
.ws1b{word-spacing:-42.100480pt;}
.ws2b{word-spacing:-41.600000pt;}
.ws2e{word-spacing:-40.960000pt;}
.ws1{word-spacing:-24.000000pt;}
.ws5a{word-spacing:-17.600000pt;}
.ws26{word-spacing:-16.192000pt;}
.ws28{word-spacing:-16.153600pt;}
.ws3a{word-spacing:-15.713280pt;}
.wsf{word-spacing:-15.703147pt;}
.ws1a{word-spacing:-15.626347pt;}
.ws30{word-spacing:-15.616213pt;}
.ws5e{word-spacing:-15.575147pt;}
.ws15{word-spacing:-15.549547pt;}
.ws5c{word-spacing:-15.539413pt;}
.ws4d{word-spacing:-15.513813pt;}
.ws1e{word-spacing:-15.488000pt;}
.ws22{word-spacing:-15.467520pt;}
.wsd{word-spacing:-15.431680pt;}
.ws36{word-spacing:-15.375147pt;}
.ws16{word-spacing:-15.329280pt;}
.ws11{word-spacing:-15.303680pt;}
.ws23{word-spacing:-15.257813pt;}
.ws10{word-spacing:-15.226880pt;}
.ws19{word-spacing:-15.191147pt;}
.ws31{word-spacing:-15.160213pt;}
.ws33{word-spacing:-15.073280pt;}
.ws61{word-spacing:-14.986347pt;}
.ws32{word-spacing:-14.871680pt;}
.ws21{word-spacing:-14.829013pt;}
.ws4c{word-spacing:-14.807680pt;}
.ws34{word-spacing:-14.733013pt;}
.ws58{word-spacing:-14.621013pt;}
.ws3b{word-spacing:-14.615680pt;}
.ws14{word-spacing:-14.589013pt;}
.ws5d{word-spacing:-14.551680pt;}
.ws18{word-spacing:-14.535680pt;}
.ws3e{word-spacing:-14.519680pt;}
.ws27{word-spacing:-13.200000pt;}
.ws2{word-spacing:-13.152000pt;}
.ws62{word-spacing:-12.586880pt;}
.wse{word-spacing:-12.450560pt;}
.ws1f{word-spacing:-2.418133pt;}
.ws52{word-spacing:-2.217600pt;}
.ws54{word-spacing:-2.191360pt;}
.ws55{word-spacing:-2.160640pt;}
.ws51{word-spacing:-2.155520pt;}
.ws57{word-spacing:-2.140160pt;}
.ws60{word-spacing:-1.751360pt;}
.ws4f{word-spacing:-1.587200pt;}
.ws4e{word-spacing:-1.561600pt;}
.ws56{word-spacing:-1.500160pt;}
.ws59{word-spacing:-1.341120pt;}
.ws13{word-spacing:-1.146880pt;}
.ws1c{word-spacing:-1.111360pt;}
.ws5f{word-spacing:-1.004907pt;}
.wsb{word-spacing:-0.983360pt;}
.ws7{word-spacing:-0.560000pt;}
.ws8{word-spacing:0.000000pt;}
.ws20{word-spacing:1.280000pt;}
._4{margin-left:-29.530667pt;}
._3{margin-left:-28.185387pt;}
._e{margin-left:-27.292587pt;}
._2{margin-left:-24.213333pt;}
._5{margin-left:-1.941760pt;}
._0{margin-left:-0.944000pt;}
._1{width:1.690667pt;}
._d{width:12.979413pt;}
._c{width:14.239147pt;}
._6{width:1408.138453pt;}
._7{width:2005.399893pt;}
._9{width:2054.016853pt;}
._a{width:2065.558613pt;}
._8{width:2114.130133pt;}
._b{width:2253.657813pt;}
.fs8{font-size:29.440000pt;}
.fs6{font-size:45.440000pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:56.320000pt;}
.fs9{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs7{font-size:80.000000pt;}
.fs4{font-size:85.120000pt;}
.fs2{font-size:128.000000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:70.592000pt;}
.y3{bottom:86.912000pt;}
.y30{bottom:107.072000pt;}
.y69{bottom:108.192000pt;}
.y86{bottom:111.712000pt;}
.y13d{bottom:112.992000pt;}
.y118{bottom:113.152000pt;}
.y123{bottom:117.152000pt;}
.ye5{bottom:118.912000pt;}
.yaf{bottom:121.152000pt;}
.y116{bottom:123.552000pt;}
.y4c{bottom:125.312000pt;}
.y9a{bottom:125.632000pt;}
.yef{bottom:126.272000pt;}
.y11b{bottom:134.746667pt;}
.y117{bottom:135.226667pt;}
.y2f{bottom:138.266667pt;}
.yc5{bottom:138.426667pt;}
.y68{bottom:139.386667pt;}
.yd3{bottom:139.706667pt;}
.yff{bottom:140.506667pt;}
.yfd{bottom:142.106667pt;}
.y104{bottom:142.586667pt;}
.y85{bottom:142.906667pt;}
.ye4{bottom:143.066667pt;}
.y13c{bottom:144.186667pt;}
.y101{bottom:144.506667pt;}
.y122{bottom:145.306667pt;}
.y115{bottom:145.626667pt;}
.ye9{bottom:149.466667pt;}
.yee{bottom:150.906667pt;}
.yf7{bottom:153.146667pt;}
.yae{bottom:153.306667pt;}
.y4b{bottom:155.866667pt;}
.ye2{bottom:158.586667pt;}
.yc9{bottom:160.506667pt;}
.ye0{bottom:162.906667pt;}
.yc4{bottom:163.226667pt;}
.ydb{bottom:164.506667pt;}
.yd2{bottom:164.666667pt;}
.yf9{bottom:164.986667pt;}
.y113{bottom:165.146667pt;}
.y2e{bottom:169.466667pt;}
.y67{bottom:169.626667pt;}
.y84{bottom:173.146667pt;}
.y10e{bottom:176.346667pt;}
.ye8{bottom:177.786667pt;}
.yf5{bottom:177.946667pt;}
.yd7{bottom:181.306667pt;}
.ydc{bottom:182.106667pt;}
.ycc{bottom:183.866667pt;}
.yc8{bottom:184.186667pt;}
.yad{bottom:184.506667pt;}
.yd0{bottom:185.306667pt;}
.yfb{bottom:185.786667pt;}
.y103{bottom:186.746667pt;}
.ycd{bottom:186.906667pt;}
.y112{bottom:187.226667pt;}
.y4a{bottom:187.706667pt;}
.y99{bottom:188.026667pt;}
.y11a{bottom:191.066667pt;}
.yf4{bottom:194.746667pt;}
.y13b{bottom:195.706667pt;}
.y10d{bottom:198.266667pt;}
.y109{bottom:198.426667pt;}
.yf2{bottom:198.586667pt;}
.y2d{bottom:200.666667pt;}
.y119{bottom:201.466667pt;}
.y66{bottom:201.786667pt;}
.ycb{bottom:202.106667pt;}
.y83{bottom:205.306667pt;}
.yd6{bottom:206.266667pt;}
.yde{bottom:206.586667pt;}
.y111{bottom:206.746667pt;}
.yac{bottom:215.706667pt;}
.y49{bottom:218.906667pt;}
.y98{bottom:219.226667pt;}
.yf3{bottom:219.546667pt;}
.yca{bottom:226.906667pt;}
.yd9{bottom:227.066667pt;}
.y110{bottom:229.946667pt;}
.y2c{bottom:231.866667pt;}
.y65{bottom:232.986667pt;}
.y82{bottom:236.506667pt;}
.y108{bottom:243.706667pt;}
.yab{bottom:246.906667pt;}
.y13a{bottom:247.386667pt;}
.y48{bottom:249.466667pt;}
.y97{bottom:250.426667pt;}
.y14e{bottom:255.066667pt;}
.y2b{bottom:263.066667pt;}
.y64{bottom:263.226667pt;}
.y81{bottom:266.746667pt;}
.y107{bottom:268.026667pt;}
.y139{bottom:273.466667pt;}
.yaa{bottom:277.146667pt;}
.y96{bottom:280.666667pt;}
.y47{bottom:281.306667pt;}
.y14d{bottom:286.266667pt;}
.y18{bottom:290.746667pt;}
.y2a{bottom:294.266667pt;}
.y63{bottom:294.426667pt;}
.y80{bottom:298.906667pt;}
.y138{bottom:304.706667pt;}
.ya9{bottom:308.386667pt;}
.y46{bottom:312.546667pt;}
.y17{bottom:316.546667pt;}
.y14c{bottom:317.186667pt;}
.y29{bottom:325.506667pt;}
.y62{bottom:326.626667pt;}
.y7f{bottom:330.146667pt;}
.ya8{bottom:334.306667pt;}
.y137{bottom:334.946667pt;}
.y45{bottom:343.746667pt;}
.y95{bottom:344.066667pt;}
.y16{bottom:347.746667pt;}
.y14b{bottom:348.706667pt;}
.y28{bottom:356.706667pt;}
.y61{bottom:357.506667pt;}
.y7e{bottom:361.346667pt;}
.y136{bottom:367.106667pt;}
.y44{bottom:373.826667pt;}
.y94{bottom:375.266667pt;}
.y15{bottom:378.946667pt;}
.yc0{bottom:379.746667pt;}
.y14a{bottom:379.906667pt;}
.y27{bottom:387.906667pt;}
.y60{bottom:388.066667pt;}
.y7d{bottom:392.546667pt;}
.y135{bottom:398.306667pt;}
.y43{bottom:405.026667pt;}
.y93{bottom:406.146667pt;}
.y14{bottom:410.146667pt;}
.y149{bottom:410.786667pt;}
.y26{bottom:419.106667pt;}
.y5f{bottom:419.266667pt;}
.y7c{bottom:423.746667pt;}
.ybf{bottom:424.386667pt;}
.y134{bottom:429.506667pt;}
.y42{bottom:435.906667pt;}
.y92{bottom:437.346667pt;}
.y13{bottom:440.706667pt;}
.y148{bottom:441.986667pt;}
.y5e{bottom:451.426667pt;}
.y7b{bottom:454.946667pt;}
.y133{bottom:459.746667pt;}
.y41{bottom:467.106667pt;}
.y91{bottom:468.546667pt;}
.ybe{bottom:469.186667pt;}
.y12{bottom:472.866667pt;}
.y147{bottom:473.186667pt;}
.y5d{bottom:482.626667pt;}
.y7a{bottom:485.186667pt;}
.ya7{bottom:486.146667pt;}
.y132{bottom:490.946667pt;}
.y40{bottom:498.306667pt;}
.y90{bottom:500.066667pt;}
.y11{bottom:503.106667pt;}
.y146{bottom:504.386667pt;}
.y5c{bottom:513.826667pt;}
.ybd{bottom:513.986667pt;}
.y79{bottom:516.386667pt;}
.ya6{bottom:517.346667pt;}
.y121{bottom:522.786667pt;}
.y131{bottom:523.106667pt;}
.y3f{bottom:529.506667pt;}
.y8f{bottom:531.266667pt;}
.y145{bottom:535.906667pt;}
.y10{bottom:539.613333pt;}
.y5b{bottom:544.093333pt;}
.yed{bottom:545.373333pt;}
.y78{bottom:548.253333pt;}
.ya5{bottom:548.573333pt;}
.y120{bottom:550.973333pt;}
.y130{bottom:554.333333pt;}
.yc3{bottom:557.693333pt;}
.ybc{bottom:558.813333pt;}
.y3e{bottom:561.373333pt;}
.y8e{bottom:562.333333pt;}
.y144{bottom:566.813333pt;}
.yec{bottom:568.413333pt;}
.y10c{bottom:571.613333pt;}
.y25{bottom:575.133333pt;}
.y5a{bottom:575.293333pt;}
.yda{bottom:575.933333pt;}
.ya4{bottom:578.813333pt;}
.y77{bottom:579.453333pt;}
.ycf{bottom:579.613333pt;}
.yf{bottom:579.773333pt;}
.yd1{bottom:579.933333pt;}
.y114{bottom:581.213333pt;}
.y11d{bottom:581.373333pt;}
.yc2{bottom:582.493333pt;}
.y12f{bottom:584.573333pt;}
.yea{bottom:591.773333pt;}
.y3d{bottom:592.093333pt;}
.y8d{bottom:593.213333pt;}
.y10b{bottom:593.533333pt;}
.yf8{bottom:597.213333pt;}
.yf6{bottom:598.173333pt;}
.yd5{bottom:600.413333pt;}
.yfe{bottom:601.213333pt;}
.y11c{bottom:602.013333pt;}
.yfc{bottom:602.813333pt;}
.yf1{bottom:602.973333pt;}
.ye3{bottom:603.293333pt;}
.ybb{bottom:603.613333pt;}
.ye1{bottom:604.893333pt;}
.y100{bottom:605.213333pt;}
.yce{bottom:606.013333pt;}
.y24{bottom:606.333333pt;}
.y59{bottom:607.453333pt;}
.y76{bottom:610.653333pt;}
.y12e{bottom:616.733333pt;}
.ye7{bottom:617.533333pt;}
.ydf{bottom:618.973333pt;}
.yd4{bottom:620.733333pt;}
.yc7{bottom:621.213333pt;}
.ye{bottom:621.373333pt;}
.y10f{bottom:622.813333pt;}
.y3c{bottom:622.973333pt;}
.y8c{bottom:623.773333pt;}
.yfa{bottom:625.693333pt;}
.y143{bottom:626.173333pt;}
.y102{bottom:626.653333pt;}
.y23{bottom:637.533333pt;}
.ye6{bottom:637.853333pt;}
.y58{bottom:638.653333pt;}
.ydd{bottom:639.133333pt;}
.ya3{bottom:641.853333pt;}
.y106{bottom:642.013333pt;}
.y75{bottom:642.173333pt;}
.yf0{bottom:645.053333pt;}
.y124{bottom:645.693333pt;}
.yc6{bottom:646.013333pt;}
.yd8{bottom:646.173333pt;}
.y12d{bottom:647.933333pt;}
.yba{bottom:648.413333pt;}
.y3b{bottom:654.173333pt;}
.y8b{bottom:655.933333pt;}
.yd{bottom:662.973333pt;}
.y105{bottom:666.333333pt;}
.y22{bottom:668.733333pt;}
.y57{bottom:669.853333pt;}
.ya2{bottom:672.413333pt;}
.y74{bottom:673.373333pt;}
.y12c{bottom:678.173333pt;}
.y3a{bottom:685.373333pt;}
.y8a{bottom:687.133333pt;}
.y142{bottom:693.053333pt;}
.yb9{bottom:693.213333pt;}
.y21{bottom:698.973333pt;}
.yc{bottom:700.733333pt;}
.y56{bottom:701.053333pt;}
.y73{bottom:703.613333pt;}
.ya1{bottom:704.573333pt;}
.y12b{bottom:710.333333pt;}
.y39{bottom:717.373333pt;}
.y89{bottom:718.333333pt;}
.y20{bottom:730.173333pt;}
.yb{bottom:730.493333pt;}
.y55{bottom:731.293333pt;}
.y141{bottom:731.453333pt;}
.y72{bottom:735.773333pt;}
.yb8{bottom:738.013333pt;}
.y12a{bottom:741.533333pt;}
.y38{bottom:748.573333pt;}
.y1f{bottom:761.373333pt;}
.ya{bottom:761.693333pt;}
.y54{bottom:762.493333pt;}
.y140{bottom:763.453333pt;}
.y71{bottom:766.973333pt;}
.y129{bottom:771.773333pt;}
.y37{bottom:779.013333pt;}
.y88{bottom:780.453333pt;}
.yb7{bottom:782.853333pt;}
.y9{bottom:792.933333pt;}
.y1e{bottom:793.573333pt;}
.y53{bottom:794.373333pt;}
.y13f{bottom:794.693333pt;}
.y70{bottom:797.253333pt;}
.ya0{bottom:798.213333pt;}
.yb2{bottom:799.813333pt;}
.yb6{bottom:803.653333pt;}
.y128{bottom:803.973333pt;}
.y36{bottom:810.213333pt;}
.y1d{bottom:823.813333pt;}
.y8{bottom:824.133333pt;}
.yb5{bottom:824.453333pt;}
.y52{bottom:825.893333pt;}
.y9f{bottom:828.453333pt;}
.y6f{bottom:829.093333pt;}
.y87{bottom:831.333333pt;}
.y127{bottom:834.213333pt;}
.y35{bottom:841.413333pt;}
.yb4{bottom:845.253333pt;}
.y1c{bottom:855.973333pt;}
.y13e{bottom:856.133333pt;}
.y51{bottom:857.093333pt;}
.y9e{bottom:859.653333pt;}
.y6e{bottom:860.613333pt;}
.y126{bottom:866.373333pt;}
.y7{bottom:866.533333pt;}
.y34{bottom:873.413333pt;}
.y1b{bottom:886.853333pt;}
.y50{bottom:888.293333pt;}
.yb3{bottom:890.213333pt;}
.y9d{bottom:890.853333pt;}
.y6d{bottom:891.813333pt;}
.y125{bottom:896.613333pt;}
.yb1{bottom:918.533333pt;}
.y4f{bottom:919.493333pt;}
.y6c{bottom:922.693333pt;}
.y9c{bottom:923.013333pt;}
.y33{bottom:924.933333pt;}
.y6{bottom:927.973333pt;}
.y1a{bottom:946.213333pt;}
.yb0{bottom:949.733333pt;}
.yeb{bottom:950.533333pt;}
.y4e{bottom:950.693333pt;}
.y9b{bottom:953.253333pt;}
.y6b{bottom:953.893333pt;}
.y11f{bottom:956.613333pt;}
.y32{bottom:981.893333pt;}
.y5{bottom:992.933333pt;}
.y10a{bottom:1000.133333pt;}
.yc1{bottom:1004.453333pt;}
.y6a{bottom:1004.613333pt;}
.y4d{bottom:1012.800000pt;}
.y31{bottom:1013.120000pt;}
.y19{bottom:1013.760000pt;}
.y11e{bottom:1018.240000pt;}
.y2{bottom:1037.440000pt;}
.y1{bottom:1053.760000pt;}
.h3{height:36.304688pt;}
.h4{height:39.375000pt;}
.h2{height:39.750000pt;}
.hb{height:42.597500pt;}
.h11{height:44.797500pt;}
.hc{height:44.935000pt;}
.ha{height:46.640000pt;}
.h13{height:46.833750pt;}
.h10{height:47.465000pt;}
.he{height:48.702500pt;}
.hf{height:48.730000pt;}
.h12{height:51.706875pt;}
.h8{height:53.000000pt;}
.h14{height:56.017500pt;}
.hd{height:67.734375pt;}
.h9{height:70.490000pt;}
.h7{height:105.000000pt;}
.h5{height:110.805625pt;}
.h6{height:111.212500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:47.999988pt;}
.xc{left:61.279988pt;}
.x14{left:71.999988pt;}
.xd{left:75.999988pt;}
.x10{left:77.279988pt;}
.x12{left:82.111988pt;}
.x43{left:90.111988pt;}
.x44{left:104.031988pt;}
.x11{left:106.751988pt;}
.x3{left:122.911988pt;}
.x1{left:146.906655pt;}
.x2{left:213.946655pt;}
.x4{left:231.866655pt;}
.x6{left:260.226655pt;}
.x8{left:339.586655pt;}
.x7{left:342.786655pt;}
.x9{left:359.586655pt;}
.x37{left:374.306655pt;}
.x26{left:378.306655pt;}
.xa{left:379.586655pt;}
.x5{left:396.866655pt;}
.x1e{left:397.986655pt;}
.x1b{left:412.066655pt;}
.x17{left:416.093322pt;}
.x3d{left:422.173322pt;}
.x27{left:432.093322pt;}
.x3a{left:452.093322pt;}
.x1d{left:454.013322pt;}
.x15{left:456.573322pt;}
.x3b{left:458.173322pt;}
.x3f{left:460.413322pt;}
.x13{left:470.973322pt;}
.x3c{left:477.053322pt;}
.x38{left:494.813322pt;}
.x39{left:498.813322pt;}
.x16{left:518.813322pt;}
.x28{left:522.813322pt;}
.x19{left:528.573322pt;}
.x2d{left:546.813322pt;}
.x42{left:548.893322pt;}
.x1c{left:550.813322pt;}
.x40{left:552.253322pt;}
.x2f{left:554.813322pt;}
.x18{left:556.893322pt;}
.x1f{left:558.013322pt;}
.x41{left:560.893322pt;}
.x2c{left:566.173322pt;}
.x25{left:572.253322pt;}
.x21{left:578.973322pt;}
.x24{left:580.093322pt;}
.x2e{left:582.853322pt;}
.x30{left:584.773322pt;}
.x2a{left:594.853322pt;}
.x31{left:598.053322pt;}
.x2b{left:600.133322pt;}
.x23{left:602.053322pt;}
.x34{left:604.773322pt;}
.x1a{left:606.053322pt;}
.x29{left:610.533322pt;}
.x32{left:618.053322pt;}
.x36{left:620.613322pt;}
.x33{left:624.773322pt;}
.x22{left:630.053322pt;}
.x35{left:636.133322pt;}
.x3e{left:638.373322pt;}
.x20{left:644.133322pt;}
.xf{left:662.213322pt;}
.xb{left:745.893322pt;}
}




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