
    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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_6d15f044fdf2e26cde913930.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.935059;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_e449c6230592939917f7d118.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.935059;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_70b9c77d662ce890ca424c0b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.111816;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_806a70b4ac208ff40576335b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.933594;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_3cb5c143c34821c461512c9a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_0fd88935b0854fd45a7bfb13.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_56ac7f00baeeda7604d21ea4.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_1fb7d769431d38ecb926e9ef.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.763672;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_7004ac1a3b564be7218f8d67.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938477;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_9406b2c4ada861997d2aaa7e.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.111816;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_346d5eed61df35caa9a612e7.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.725000;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_9691bd1ee6fd873d551b18b6.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.933594;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_f0358a0a8953e9c83c2ba30f.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.691895;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_4086860b5885c3203a5f645e.woff2')format("woff");}.fff{font-family:fff;line-height:0.691895;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_c21b23603629a695c23c6ff3.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.926270;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_0678f14d9960dbf8c89f8784.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.853027;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.910156;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_d7a2f657c890889f06790791.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.926270;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_a8c49ef455fa324b3791fc29.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.938477;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);}
.v0{vertical-align:0.000000px;}
.ls4a{letter-spacing:-1.536000px;}
.ls4b{letter-spacing:-1.518000px;}
.ls25{letter-spacing:-1.386000px;}
.ls40{letter-spacing:-1.332000px;}
.ls22{letter-spacing:-0.666000px;}
.ls21{letter-spacing:-0.612000px;}
.ls45{letter-spacing:-0.474600px;}
.ls44{letter-spacing:-0.420000px;}
.ls27{letter-spacing:-0.288600px;}
.lsd{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.233400px;}
.ls11{letter-spacing:-0.162000px;}
.lsc{letter-spacing:-0.144000px;}
.ls3d{letter-spacing:-0.097800px;}
.ls20{letter-spacing:-0.076200px;}
.lse{letter-spacing:-0.072000px;}
.ls24{letter-spacing:-0.021600px;}
.lsa{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.005040px;}
.ls0{letter-spacing:0.017280px;}
.ls3f{letter-spacing:0.030720px;}
.ls2{letter-spacing:0.048000px;}
.ls13{letter-spacing:0.052560px;}
.ls7{letter-spacing:0.054720px;}
.ls46{letter-spacing:0.072000px;}
.ls36{letter-spacing:0.090000px;}
.ls6{letter-spacing:0.109200px;}
.ls50{letter-spacing:0.109440px;}
.ls1{letter-spacing:0.133200px;}
.ls10{letter-spacing:0.180000px;}
.ls58{letter-spacing:0.229440px;}
.ls3a{letter-spacing:0.245520px;}
.ls35{letter-spacing:0.257760px;}
.ls1f{letter-spacing:0.288000px;}
.ls56{letter-spacing:0.289440px;}
.ls26{letter-spacing:0.300000px;}
.ls43{letter-spacing:0.343920px;}
.ls1e{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.378000px;}
.ls23{letter-spacing:0.642000px;}
.lsf{letter-spacing:0.648000px;}
.ls14{letter-spacing:0.670080px;}
.ls8{letter-spacing:0.774720px;}
.ls3c{letter-spacing:0.828000px;}
.ls54{letter-spacing:0.829440px;}
.ls12{letter-spacing:0.900000px;}
.ls29{letter-spacing:1.494720px;}
.ls3{letter-spacing:2.172000px;}
.ls19{letter-spacing:2.214720px;}
.ls30{letter-spacing:2.934720px;}
.ls4{letter-spacing:3.029760px;}
.ls51{letter-spacing:3.114720px;}
.ls15{letter-spacing:3.654720px;}
.ls47{letter-spacing:4.374720px;}
.ls4d{letter-spacing:5.070720px;}
.ls1a{letter-spacing:5.094720px;}
.ls17{letter-spacing:5.814720px;}
.ls3b{letter-spacing:6.534720px;}
.ls4e{letter-spacing:7.254720px;}
.ls1b{letter-spacing:7.974720px;}
.ls34{letter-spacing:9.414720px;}
.ls41{letter-spacing:10.134720px;}
.ls38{letter-spacing:10.854720px;}
.ls9{letter-spacing:11.574720px;}
.ls16{letter-spacing:12.294720px;}
.ls32{letter-spacing:13.014720px;}
.ls31{letter-spacing:13.194720px;}
.ls4f{letter-spacing:14.430720px;}
.ls18{letter-spacing:14.454720px;}
.ls33{letter-spacing:16.614720px;}
.ls2b{letter-spacing:20.214720px;}
.ls1c{letter-spacing:20.934720px;}
.ls37{letter-spacing:22.374720px;}
.ls2e{letter-spacing:23.094720px;}
.ls2c{letter-spacing:23.814720px;}
.ls2f{letter-spacing:24.534720px;}
.ls2d{letter-spacing:25.254720px;}
.ls3e{letter-spacing:31.014720px;}
.ls49{letter-spacing:55.494720px;}
.ls48{letter-spacing:56.214720px;}
.ls55{letter-spacing:71.226720px;}
.ls57{letter-spacing:71.370720px;}
.ls53{letter-spacing:98.586720px;}
.ls52{letter-spacing:98.730720px;}
.ls2a{letter-spacing:109.386720px;}
.ls4c{letter-spacing:109.530720px;}
.ls39{letter-spacing:116.784000px;}
.ls42{letter-spacing:116.928000px;}
.ls28{letter-spacing:155.610720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(60,92,116),0 0.015em rgb(60,92,116),0.015em 0 rgb(60,92,116),0 -0.015em  rgb(60,92,116);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(60,92,116);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws18{word-spacing:-72.000000px;}
.ws0{word-spacing:-66.240000px;}
.ws17{word-spacing:-59.760000px;}
.ws16{word-spacing:-59.662200px;}
.ws1f{word-spacing:-28.625040px;}
.wsc{word-spacing:-18.288000px;}
.ws20{word-spacing:-18.072000px;}
.ws1{word-spacing:-15.102720px;}
.wsb{word-spacing:-14.940000px;}
.ws15{word-spacing:-14.453280px;}
.ws10{word-spacing:-14.267280px;}
.ws13{word-spacing:-13.925280px;}
.ws8{word-spacing:-13.734480px;}
.ws9{word-spacing:-13.680000px;}
.ws11{word-spacing:-13.625280px;}
.ws12{word-spacing:-13.603680px;}
.wsd{word-spacing:-13.549080px;}
.ws19{word-spacing:-13.527480px;}
.ws14{word-spacing:-13.336680px;}
.ws1b{word-spacing:-13.205280px;}
.ws1c{word-spacing:-13.150680px;}
.wse{word-spacing:-13.013280px;}
.wsf{word-spacing:-12.959280px;}
.ws5{word-spacing:-12.690000px;}
.ws6{word-spacing:-12.492000px;}
.ws2{word-spacing:-12.312000px;}
.ws1a{word-spacing:-12.293280px;}
.ws3{word-spacing:-12.168000px;}
.ws7{word-spacing:-12.150000px;}
.ws1e{word-spacing:-12.107280px;}
.ws1d{word-spacing:-12.089280px;}
.ws4{word-spacing:-12.024000px;}
.wsa{word-spacing:0.000000px;}
._1c{margin-left:-6.462240px;}
._1d{margin-left:-5.330880px;}
._5{margin-left:-4.173120px;}
._6{margin-left:-3.010320px;}
._1{margin-left:-1.080000px;}
._0{width:1.242000px;}
._9{width:2.599920px;}
._8{width:3.744000px;}
._7{width:4.901760px;}
._d{width:5.961600px;}
._c{width:7.153920px;}
._12{width:8.646240px;}
._e{width:9.735360px;}
._f{width:11.255280px;}
._a{width:12.320640px;}
._b{width:13.377840px;}
._11{width:14.700960px;}
._10{width:16.406880px;}
._16{width:17.928480px;}
._15{width:18.943920px;}
._14{width:20.587680px;}
._13{width:21.752640px;}
._17{width:23.579280px;}
._18{width:24.761520px;}
._1a{width:25.903200px;}
._1b{width:27.386640px;}
._21{width:29.275920px;}
._19{width:30.537360px;}
._1e{width:32.270400px;}
._2{width:34.452000px;}
._3{width:36.396000px;}
._1f{width:37.828080px;}
._22{width:39.083040px;}
._20{width:48.139200px;}
._2e{width:49.421520px;}
._2c{width:50.676480px;}
._23{width:56.164560px;}
._2a{width:58.913280px;}
._2b{width:60.294240px;}
._28{width:61.498560px;}
._4{width:71.280480px;}
._29{width:80.974800px;}
._27{width:95.248800px;}
._26{width:157.853280px;}
._2d{width:163.981440px;}
._24{width:202.554720px;}
._25{width:240.484080px;}
.fc5{color:transparent;}
.fc3{color:rgb(60,92,116);}
.fc2{color:rgb(60,92,115);}
.fc4{color:rgb(193,89,76);}
.fc1{color:rgb(33,29,30);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:77.760000px;}
.fs5{font-size:84.240000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y30{bottom:2.880000px;}
.yc5{bottom:3.240000px;}
.y25{bottom:3.420000px;}
.y4f{bottom:4.680000px;}
.y2f{bottom:18.405000px;}
.yd1{bottom:20.340000px;}
.y11c{bottom:20.520000px;}
.y24{bottom:22.320000px;}
.y2e{bottom:33.885000px;}
.y23{bottom:41.220000px;}
.y2d{bottom:49.365000px;}
.y4d{bottom:57.060000px;}
.y16a{bottom:57.240000px;}
.y22{bottom:60.300000px;}
.y2c{bottom:64.845000px;}
.y7{bottom:66.780000px;}
.y4e{bottom:71.820000px;}
.y4c{bottom:73.800000px;}
.y21{bottom:79.200000px;}
.y2b{bottom:80.505000px;}
.y6{bottom:83.160000px;}
.y4b{bottom:90.720000px;}
.y2a{bottom:95.985000px;}
.y20{bottom:98.130000px;}
.y5{bottom:99.540000px;}
.y29{bottom:113.085000px;}
.y1f{bottom:117.030000px;}
.y1a2{bottom:119.160000px;}
.y141{bottom:121.680000px;}
.yc1{bottom:122.760000px;}
.y8d{bottom:123.660000px;}
.y4{bottom:124.920000px;}
.y107{bottom:125.460000px;}
.y172{bottom:127.260000px;}
.y28{bottom:132.165000px;}
.y1e{bottom:135.930000px;}
.y1a1{bottom:136.260000px;}
.y140{bottom:138.960000px;}
.yc0{bottom:139.860000px;}
.y3d{bottom:140.580000px;}
.y8c{bottom:140.940000px;}
.y4a{bottom:142.200000px;}
.y9c{bottom:143.280000px;}
.y106{bottom:143.820000px;}
.y171{bottom:144.540000px;}
.y27{bottom:152.865000px;}
.y1a0{bottom:153.570000px;}
.y1d{bottom:155.010000px;}
.y13f{bottom:156.090000px;}
.ybf{bottom:157.170000px;}
.y3c{bottom:157.710000px;}
.y8b{bottom:158.070000px;}
.y49{bottom:159.510000px;}
.y9b{bottom:160.770000px;}
.y170{bottom:161.850000px;}
.y105{bottom:162.210000px;}
.y19f{bottom:170.850000px;}
.y13e{bottom:173.370000px;}
.y1c{bottom:173.910000px;}
.ybe{bottom:174.450000px;}
.y3b{bottom:174.990000px;}
.y8a{bottom:175.350000px;}
.y9a{bottom:176.250000px;}
.y48{bottom:176.610000px;}
.y16f{bottom:178.950000px;}
.ye7{bottom:179.670000px;}
.y104{bottom:184.350000px;}
.y19e{bottom:187.950000px;}
.y13d{bottom:188.130000px;}
.ybd{bottom:191.550000px;}
.y3a{bottom:192.090000px;}
.y89{bottom:192.450000px;}
.y1b{bottom:192.810000px;}
.y47{bottom:193.890000px;}
.ye6{bottom:196.950000px;}
.y103{bottom:201.630000px;}
.y19d{bottom:205.230000px;}
.y13c{bottom:206.130000px;}
.y16e{bottom:206.490000px;}
.ybc{bottom:208.830000px;}
.y39{bottom:209.370000px;}
.y88{bottom:209.730000px;}
.y46{bottom:211.170000px;}
.y1a{bottom:211.710000px;}
.ye5{bottom:214.410000px;}
.y102{bottom:218.730000px;}
.y169{bottom:221.250000px;}
.y19c{bottom:222.330000px;}
.y13b{bottom:223.950000px;}
.ybb{bottom:225.930000px;}
.y38{bottom:226.650000px;}
.y87{bottom:227.010000px;}
.y45{bottom:228.270000px;}
.ye4{bottom:229.890000px;}
.y19{bottom:230.610000px;}
.y101{bottom:236.010000px;}
.y16d{bottom:239.250000px;}
.y19b{bottom:239.610000px;}
.y13a{bottom:241.950000px;}
.yba{bottom:243.210000px;}
.y37{bottom:243.750000px;}
.y86{bottom:244.110000px;}
.y44{bottom:245.550000px;}
.y18{bottom:249.510000px;}
.y100{bottom:253.110000px;}
.y19a{bottom:257.070000px;}
.y16c{bottom:257.250000px;}
.y139{bottom:259.950000px;}
.yb9{bottom:260.490000px;}
.y36{bottom:261.030000px;}
.y85{bottom:261.390000px;}
.y43{bottom:262.830000px;}
.y17{bottom:268.590000px;}
.yff{bottom:270.390000px;}
.y16b{bottom:275.250000px;}
.y199{bottom:276.510000px;}
.yb8{bottom:277.590000px;}
.y138{bottom:277.950000px;}
.y35{bottom:278.310000px;}
.y84{bottom:278.670000px;}
.y42{bottom:279.930000px;}
.y16{bottom:287.490000px;}
.yfe{bottom:287.670000px;}
.y168{bottom:293.070000px;}
.y198{bottom:294.150000px;}
.yb7{bottom:295.050000px;}
.y34{bottom:295.410000px;}
.y83{bottom:295.770000px;}
.y41{bottom:297.210000px;}
.yfd{bottom:304.770000px;}
.y15{bottom:306.390000px;}
.y197{bottom:311.250000px;}
.y33{bottom:312.690000px;}
.y82{bottom:313.050000px;}
.y137{bottom:313.770000px;}
.yb6{bottom:313.950000px;}
.y40{bottom:314.310000px;}
.yfc{bottom:322.050000px;}
.y14{bottom:325.290000px;}
.y167{bottom:328.350000px;}
.y196{bottom:328.530000px;}
.y32{bottom:329.790000px;}
.y81{bottom:330.150000px;}
.y3f{bottom:331.590000px;}
.y136{bottom:331.770000px;}
.yb5{bottom:332.670000px;}
.yfb{bottom:339.330000px;}
.y13{bottom:344.235000px;}
.y195{bottom:345.630000px;}
.y31{bottom:347.250000px;}
.y80{bottom:347.430000px;}
.y3e{bottom:348.870000px;}
.y135{bottom:349.770000px;}
.yb4{bottom:353.910000px;}
.yfa{bottom:356.430000px;}
.y194{bottom:362.910000px;}
.y166{bottom:363.450000px;}
.y7f{bottom:364.710000px;}
.y134{bottom:371.190000px;}
.yf9{bottom:373.710000px;}
.yb3{bottom:375.330000px;}
.y193{bottom:380.190000px;}
.y7e{bottom:381.810000px;}
.y26{bottom:382.890000px;}
.y165{bottom:384.870000px;}
.y133{bottom:389.910000px;}
.yf8{bottom:390.810000px;}
.yb2{bottom:396.570000px;}
.y192{bottom:397.290000px;}
.y7d{bottom:399.090000px;}
.y164{bottom:403.635000px;}
.y130{bottom:407.775000px;}
.yf7{bottom:408.135000px;}
.yb1{bottom:413.715000px;}
.y132{bottom:414.435000px;}
.y191{bottom:414.615000px;}
.y7c{bottom:416.415000px;}
.y153{bottom:420.915000px;}
.yf6{bottom:425.415000px;}
.y131{bottom:429.915000px;}
.yb0{bottom:430.995000px;}
.y190{bottom:431.895000px;}
.y7b{bottom:433.515000px;}
.y152{bottom:435.675000px;}
.y163{bottom:437.655000px;}
.yf5{bottom:442.515000px;}
.y12f{bottom:442.695000px;}
.yaf{bottom:448.095000px;}
.y18f{bottom:448.995000px;}
.y99{bottom:449.535000px;}
.y7a{bottom:450.795000px;}
.y151{bottom:453.495000px;}
.y162{bottom:454.935000px;}
.yf4{bottom:459.795000px;}
.y12e{bottom:463.935000px;}
.yae{bottom:465.375000px;}
.ye3{bottom:465.915000px;}
.y18e{bottom:466.275000px;}
.y98{bottom:466.635000px;}
.y79{bottom:467.895000px;}
.y150{bottom:471.495000px;}
.y161{bottom:472.215000px;}
.yf3{bottom:477.075000px;}
.y12d{bottom:481.215000px;}
.yad{bottom:482.655000px;}
.ye2{bottom:483.375000px;}
.y97{bottom:483.915000px;}
.y78{bottom:485.175000px;}
.y160{bottom:489.315000px;}
.y14f{bottom:489.495000px;}
.yf2{bottom:494.175000px;}
.yac{bottom:499.755000px;}
.ye1{bottom:500.655000px;}
.y96{bottom:501.015000px;}
.y77{bottom:502.455000px;}
.y15f{bottom:506.595000px;}
.y14e{bottom:507.495000px;}
.yf1{bottom:511.635000px;}
.yab{bottom:517.035000px;}
.ye0{bottom:517.755000px;}
.y18d{bottom:517.935000px;}
.y95{bottom:518.295000px;}
.y76{bottom:519.555000px;}
.y15e{bottom:523.875000px;}
.y14d{bottom:525.495000px;}
.yf0{bottom:527.115000px;}
.yaa{bottom:534.135000px;}
.ydf{bottom:535.035000px;}
.y94{bottom:535.575000px;}
.y75{bottom:536.835000px;}
.y12c{bottom:540.795000px;}
.y15d{bottom:540.975000px;}
.y14c{bottom:543.315000px;}
.ya9{bottom:551.415000px;}
.yde{bottom:552.315000px;}
.y93{bottom:552.675000px;}
.y74{bottom:554.115000px;}
.y12{bottom:554.295000px;}
.y12b{bottom:558.075000px;}
.y15c{bottom:558.255000px;}
.y14b{bottom:561.315000px;}
.ya8{bottom:568.695000px;}
.ydd{bottom:569.415000px;}
.y18c{bottom:569.595000px;}
.y92{bottom:570.135000px;}
.y73{bottom:571.215000px;}
.y12a{bottom:575.175000px;}
.y15b{bottom:575.355000px;}
.y14a{bottom:579.315000px;}
.ya7{bottom:585.795000px;}
.ydc{bottom:586.695000px;}
.y72{bottom:588.495000px;}
.y91{bottom:588.855000px;}
.y129{bottom:592.455000px;}
.y15a{bottom:592.635000px;}
.ydb{bottom:601.455000px;}
.ya6{bottom:603.255000px;}
.y18b{bottom:603.975000px;}
.y71{bottom:605.595000px;}
.y90{bottom:606.315000px;}
.y128{bottom:609.735000px;}
.y159{bottom:609.915000px;}
.y149{bottom:614.415000px;}
.yda{bottom:619.455000px;}
.ya5{bottom:620.895000px;}
.y18a{bottom:621.075000px;}
.y8f{bottom:621.795000px;}
.y70{bottom:622.875000px;}
.y127{bottom:626.835000px;}
.y158{bottom:627.015000px;}
.y148{bottom:632.415000px;}
.yd9{bottom:637.275000px;}
.ya4{bottom:638.355000px;}
.y6f{bottom:640.155000px;}
.y126{bottom:644.115000px;}
.y157{bottom:644.295000px;}
.y147{bottom:653.685000px;}
.yd8{bottom:655.305000px;}
.y189{bottom:655.665000px;}
.ya3{bottom:655.845000px;}
.y6e{bottom:657.285000px;}
.y125{bottom:661.425000px;}
.y156{bottom:661.605000px;}
.y146{bottom:671.145000px;}
.y188{bottom:672.765000px;}
.ya2{bottom:673.125000px;}
.yd7{bottom:673.305000px;}
.y6d{bottom:674.565000px;}
.y124{bottom:678.525000px;}
.y155{bottom:678.885000px;}
.y145{bottom:689.865000px;}
.y187{bottom:690.045000px;}
.ya1{bottom:690.225000px;}
.yd6{bottom:691.305000px;}
.y6c{bottom:691.665000px;}
.y154{bottom:694.365000px;}
.y123{bottom:695.805000px;}
.y144{bottom:707.325000px;}
.ya0{bottom:707.685000px;}
.y6b{bottom:708.945000px;}
.yd5{bottom:709.125000px;}
.y122{bottom:712.905000px;}
.y143{bottom:722.805000px;}
.y186{bottom:724.425000px;}
.y9f{bottom:725.145000px;}
.y6a{bottom:726.225000px;}
.yd4{bottom:727.125000px;}
.y121{bottom:730.185000px;}
.y185{bottom:741.705000px;}
.y9e{bottom:742.245000px;}
.y69{bottom:743.325000px;}
.y120{bottom:744.945000px;}
.yd3{bottom:745.125000px;}
.yef{bottom:750.885000px;}
.y184{bottom:758.805000px;}
.y9d{bottom:760.245000px;}
.y68{bottom:760.605000px;}
.y11f{bottom:762.945000px;}
.yd2{bottom:763.125000px;}
.yee{bottom:768.165000px;}
.y183{bottom:776.085000px;}
.y67{bottom:777.885000px;}
.y11e{bottom:780.765000px;}
.yd0{bottom:781.125000px;}
.yed{bottom:785.265000px;}
.y182{bottom:793.365000px;}
.y66{bottom:794.985000px;}
.y11d{bottom:798.765000px;}
.yec{bottom:802.545000px;}
.y181{bottom:810.465000px;}
.y65{bottom:812.265000px;}
.ycf{bottom:816.225000px;}
.y11b{bottom:816.765000px;}
.yeb{bottom:819.645000px;}
.y180{bottom:827.745000px;}
.y64{bottom:829.365000px;}
.yce{bottom:834.225000px;}
.yea{bottom:836.925000px;}
.y17f{bottom:845.025000px;}
.y8e{bottom:846.285000px;}
.y63{bottom:846.645000px;}
.ycd{bottom:852.225000px;}
.ye9{bottom:854.385000px;}
.y11a{bottom:855.465000px;}
.y17e{bottom:862.125000px;}
.y62{bottom:863.925000px;}
.ye8{bottom:869.865000px;}
.ycc{bottom:870.045000px;}
.y119{bottom:874.185000px;}
.y17d{bottom:879.405000px;}
.y61{bottom:881.025000px;}
.ycb{bottom:888.045000px;}
.y118{bottom:891.285000px;}
.y17c{bottom:896.505000px;}
.y60{bottom:898.350000px;}
.yca{bottom:906.090000px;}
.y117{bottom:908.610000px;}
.y17b{bottom:913.830000px;}
.y5f{bottom:915.630000px;}
.y11{bottom:918.510000px;}
.yc9{bottom:924.090000px;}
.y116{bottom:925.710000px;}
.y17a{bottom:931.110000px;}
.y5e{bottom:932.730000px;}
.y10{bottom:937.590000px;}
.yc8{bottom:942.090000px;}
.y115{bottom:942.990000px;}
.y179{bottom:948.210000px;}
.y5d{bottom:950.010000px;}
.yf{bottom:956.670000px;}
.yc7{bottom:959.910000px;}
.y114{bottom:960.270000px;}
.y178{bottom:965.490000px;}
.y5c{bottom:967.110000px;}
.y113{bottom:977.370000px;}
.yc6{bottom:977.910000px;}
.ye{bottom:978.090000px;}
.y177{bottom:982.590000px;}
.y1a3{bottom:984.030000px;}
.y5b{bottom:984.390000px;}
.y112{bottom:994.650000px;}
.yc4{bottom:995.910000px;}
.yd{bottom:996.990000px;}
.y176{bottom:999.870000px;}
.y142{bottom:1001.310000px;}
.y5a{bottom:1001.670000px;}
.y111{bottom:1011.930000px;}
.yc3{bottom:1017.150000px;}
.yc{bottom:1018.590000px;}
.y59{bottom:1018.770000px;}
.y110{bottom:1029.030000px;}
.y175{bottom:1034.250000px;}
.yc2{bottom:1034.610000px;}
.y58{bottom:1036.050000px;}
.yb{bottom:1039.830000px;}
.y10f{bottom:1046.310000px;}
.y174{bottom:1051.530000px;}
.y57{bottom:1053.330000px;}
.y10e{bottom:1061.070000px;}
.y173{bottom:1068.990000px;}
.y56{bottom:1070.430000px;}
.ya{bottom:1070.790000px;}
.y10d{bottom:1078.890000px;}
.y55{bottom:1087.710000px;}
.y10c{bottom:1096.890000px;}
.y54{bottom:1104.810000px;}
.y9{bottom:1111.830000px;}
.y10b{bottom:1114.890000px;}
.y53{bottom:1122.090000px;}
.y8{bottom:1128.210000px;}
.y10a{bottom:1132.890000px;}
.y52{bottom:1139.370000px;}
.y3{bottom:1148.580000px;}
.y109{bottom:1150.920000px;}
.y51{bottom:1156.500000px;}
.y2{bottom:1170.720000px;}
.y108{bottom:1172.340000px;}
.y50{bottom:1173.780000px;}
.y1{bottom:1192.680000px;}
.h18{height:17.100000px;}
.h1b{height:17.136000px;}
.h17{height:17.280000px;}
.h19{height:17.316000px;}
.h12{height:20.160000px;}
.h1a{height:34.380000px;}
.h1c{height:34.560000px;}
.h3{height:36.571289px;}
.hf{height:39.313477px;}
.h5{height:40.472227px;}
.h16{height:42.777422px;}
.h14{height:43.506914px;}
.h15{height:44.907539px;}
.h9{height:48.224531px;}
.hd{height:48.673828px;}
.h13{height:48.761719px;}
.h7{height:49.777031px;}
.h11{height:51.408000px;}
.h10{height:53.865703px;}
.hc{height:58.433906px;}
.h4{height:59.706562px;}
.ha{height:63.303398px;}
.he{height:65.884219px;}
.h1d{height:71.100000px;}
.h2{height:71.613281px;}
.h6{height:78.626953px;}
.hb{height:171.390000px;}
.h8{height:359.715000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:49.536000px;}
.w19{width:76.500000px;}
.wc{width:82.476000px;}
.w1a{width:83.916000px;}
.w1b{width:93.960000px;}
.w1c{width:107.316000px;}
.w17{width:108.936000px;}
.w10{width:129.996000px;}
.w16{width:130.680000px;}
.w9{width:138.420000px;}
.w11{width:138.816000px;}
.wa{width:142.416000px;}
.we{width:145.080000px;}
.wf{width:152.850000px;}
.w6{width:154.620000px;}
.wb{width:180.210000px;}
.w5{width:230.115000px;}
.w13{width:235.830000px;}
.wd{width:236.955000px;}
.w14{width:242.895000px;}
.w15{width:254.235000px;}
.w8{width:260.175000px;}
.w12{width:326.415000px;}
.w18{width:332.175000px;}
.w1d{width:363.855000px;}
.w7{width:385.635000px;}
.w3{width:892.799973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:7.740000px;}
.x6{left:16.950000px;}
.x1{left:42.479987px;}
.xe{left:46.799987px;}
.xa{left:49.859987px;}
.x8{left:85.355987px;}
.x25{left:90.755987px;}
.xb{left:112.895987px;}
.xf{left:131.975987px;}
.x9{left:137.915987px;}
.x2b{left:153.030000px;}
.x26{left:171.029987px;}
.x24{left:236.009987px;}
.x21{left:259.229987px;}
.xd{left:274.215000px;}
.x1b{left:280.875000px;}
.x27{left:298.155000px;}
.x17{left:304.095000px;}
.x16{left:323.354987px;}
.x2a{left:364.574987px;}
.x22{left:370.335000px;}
.x1c{left:426.675000px;}
.x7{left:429.554987px;}
.x18{left:443.235000px;}
.x4{left:446.504987px;}
.x3{left:463.604987px;}
.x11{left:467.924987px;}
.x14{left:479.984987px;}
.x2c{left:485.925000px;}
.x20{left:489.164987px;}
.x28{left:507.524987px;}
.x12{left:563.324987px;}
.x1d{left:580.245000px;}
.x19{left:586.365000px;}
.x29{left:592.124987px;}
.x23{left:606.885000px;}
.x15{left:611.564987px;}
.x2d{left:647.790000px;}
.x1e{left:710.970000px;}
.x2e{left:742.470000px;}
.x2{left:751.469987px;}
.x1a{left:767.310000px;}
.x5{left:798.810000px;}
.x1f{left:848.339987px;}
.x10{left:850.679987px;}
.x13{left:855.179987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4a{letter-spacing:-1.365333pt;}
.ls4b{letter-spacing:-1.349333pt;}
.ls25{letter-spacing:-1.232000pt;}
.ls40{letter-spacing:-1.184000pt;}
.ls22{letter-spacing:-0.592000pt;}
.ls21{letter-spacing:-0.544000pt;}
.ls45{letter-spacing:-0.421867pt;}
.ls44{letter-spacing:-0.373333pt;}
.ls27{letter-spacing:-0.256533pt;}
.lsd{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.207467pt;}
.ls11{letter-spacing:-0.144000pt;}
.lsc{letter-spacing:-0.128000pt;}
.ls3d{letter-spacing:-0.086933pt;}
.ls20{letter-spacing:-0.067733pt;}
.lse{letter-spacing:-0.064000pt;}
.ls24{letter-spacing:-0.019200pt;}
.lsa{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.004480pt;}
.ls0{letter-spacing:0.015360pt;}
.ls3f{letter-spacing:0.027307pt;}
.ls2{letter-spacing:0.042667pt;}
.ls13{letter-spacing:0.046720pt;}
.ls7{letter-spacing:0.048640pt;}
.ls46{letter-spacing:0.064000pt;}
.ls36{letter-spacing:0.080000pt;}
.ls6{letter-spacing:0.097067pt;}
.ls50{letter-spacing:0.097280pt;}
.ls1{letter-spacing:0.118400pt;}
.ls10{letter-spacing:0.160000pt;}
.ls58{letter-spacing:0.203947pt;}
.ls3a{letter-spacing:0.218240pt;}
.ls35{letter-spacing:0.229120pt;}
.ls1f{letter-spacing:0.256000pt;}
.ls56{letter-spacing:0.257280pt;}
.ls26{letter-spacing:0.266667pt;}
.ls43{letter-spacing:0.305707pt;}
.ls1e{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.336000pt;}
.ls23{letter-spacing:0.570667pt;}
.lsf{letter-spacing:0.576000pt;}
.ls14{letter-spacing:0.595627pt;}
.ls8{letter-spacing:0.688640pt;}
.ls3c{letter-spacing:0.736000pt;}
.ls54{letter-spacing:0.737280pt;}
.ls12{letter-spacing:0.800000pt;}
.ls29{letter-spacing:1.328640pt;}
.ls3{letter-spacing:1.930667pt;}
.ls19{letter-spacing:1.968640pt;}
.ls30{letter-spacing:2.608640pt;}
.ls4{letter-spacing:2.693120pt;}
.ls51{letter-spacing:2.768640pt;}
.ls15{letter-spacing:3.248640pt;}
.ls47{letter-spacing:3.888640pt;}
.ls4d{letter-spacing:4.507307pt;}
.ls1a{letter-spacing:4.528640pt;}
.ls17{letter-spacing:5.168640pt;}
.ls3b{letter-spacing:5.808640pt;}
.ls4e{letter-spacing:6.448640pt;}
.ls1b{letter-spacing:7.088640pt;}
.ls34{letter-spacing:8.368640pt;}
.ls41{letter-spacing:9.008640pt;}
.ls38{letter-spacing:9.648640pt;}
.ls9{letter-spacing:10.288640pt;}
.ls16{letter-spacing:10.928640pt;}
.ls32{letter-spacing:11.568640pt;}
.ls31{letter-spacing:11.728640pt;}
.ls4f{letter-spacing:12.827307pt;}
.ls18{letter-spacing:12.848640pt;}
.ls33{letter-spacing:14.768640pt;}
.ls2b{letter-spacing:17.968640pt;}
.ls1c{letter-spacing:18.608640pt;}
.ls37{letter-spacing:19.888640pt;}
.ls2e{letter-spacing:20.528640pt;}
.ls2c{letter-spacing:21.168640pt;}
.ls2f{letter-spacing:21.808640pt;}
.ls2d{letter-spacing:22.448640pt;}
.ls3e{letter-spacing:27.568640pt;}
.ls49{letter-spacing:49.328640pt;}
.ls48{letter-spacing:49.968640pt;}
.ls55{letter-spacing:63.312640pt;}
.ls57{letter-spacing:63.440640pt;}
.ls53{letter-spacing:87.632640pt;}
.ls52{letter-spacing:87.760640pt;}
.ls2a{letter-spacing:97.232640pt;}
.ls4c{letter-spacing:97.360640pt;}
.ls39{letter-spacing:103.808000pt;}
.ls42{letter-spacing:103.936000pt;}
.ls28{letter-spacing:138.320640pt;}
.ws18{word-spacing:-64.000000pt;}
.ws0{word-spacing:-58.880000pt;}
.ws17{word-spacing:-53.120000pt;}
.ws16{word-spacing:-53.033067pt;}
.ws1f{word-spacing:-25.444480pt;}
.wsc{word-spacing:-16.256000pt;}
.ws20{word-spacing:-16.064000pt;}
.ws1{word-spacing:-13.424640pt;}
.wsb{word-spacing:-13.280000pt;}
.ws15{word-spacing:-12.847360pt;}
.ws10{word-spacing:-12.682027pt;}
.ws13{word-spacing:-12.378027pt;}
.ws8{word-spacing:-12.208427pt;}
.ws9{word-spacing:-12.160000pt;}
.ws11{word-spacing:-12.111360pt;}
.ws12{word-spacing:-12.092160pt;}
.wsd{word-spacing:-12.043627pt;}
.ws19{word-spacing:-12.024427pt;}
.ws14{word-spacing:-11.854827pt;}
.ws1b{word-spacing:-11.738027pt;}
.ws1c{word-spacing:-11.689493pt;}
.wse{word-spacing:-11.567360pt;}
.wsf{word-spacing:-11.519360pt;}
.ws5{word-spacing:-11.280000pt;}
.ws6{word-spacing:-11.104000pt;}
.ws2{word-spacing:-10.944000pt;}
.ws1a{word-spacing:-10.927360pt;}
.ws3{word-spacing:-10.816000pt;}
.ws7{word-spacing:-10.800000pt;}
.ws1e{word-spacing:-10.762027pt;}
.ws1d{word-spacing:-10.746027pt;}
.ws4{word-spacing:-10.688000pt;}
.wsa{word-spacing:0.000000pt;}
._1c{margin-left:-5.744213pt;}
._1d{margin-left:-4.738560pt;}
._5{margin-left:-3.709440pt;}
._6{margin-left:-2.675840pt;}
._1{margin-left:-0.960000pt;}
._0{width:1.104000pt;}
._9{width:2.311040pt;}
._8{width:3.328000pt;}
._7{width:4.357120pt;}
._d{width:5.299200pt;}
._c{width:6.359040pt;}
._12{width:7.685547pt;}
._e{width:8.653653pt;}
._f{width:10.004693pt;}
._a{width:10.951680pt;}
._b{width:11.891413pt;}
._11{width:13.067520pt;}
._10{width:14.583893pt;}
._16{width:15.936427pt;}
._15{width:16.839040pt;}
._14{width:18.300160pt;}
._13{width:19.335680pt;}
._17{width:20.959360pt;}
._18{width:22.010240pt;}
._1a{width:23.025067pt;}
._1b{width:24.343680pt;}
._21{width:26.023040pt;}
._19{width:27.144320pt;}
._1e{width:28.684800pt;}
._2{width:30.624000pt;}
._3{width:32.352000pt;}
._1f{width:33.624960pt;}
._22{width:34.740480pt;}
._20{width:42.790400pt;}
._2e{width:43.930240pt;}
._2c{width:45.045760pt;}
._23{width:49.924053pt;}
._2a{width:52.367360pt;}
._2b{width:53.594880pt;}
._28{width:54.665387pt;}
._4{width:63.360427pt;}
._29{width:71.977600pt;}
._27{width:84.665600pt;}
._26{width:140.314027pt;}
._2d{width:145.761280pt;}
._24{width:180.048640pt;}
._25{width:213.763627pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:69.120000pt;}
.fs5{font-size:74.880000pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:2.560000pt;}
.yc5{bottom:2.880000pt;}
.y25{bottom:3.040000pt;}
.y4f{bottom:4.160000pt;}
.y2f{bottom:16.360000pt;}
.yd1{bottom:18.080000pt;}
.y11c{bottom:18.240000pt;}
.y24{bottom:19.840000pt;}
.y2e{bottom:30.120000pt;}
.y23{bottom:36.640000pt;}
.y2d{bottom:43.880000pt;}
.y4d{bottom:50.720000pt;}
.y16a{bottom:50.880000pt;}
.y22{bottom:53.600000pt;}
.y2c{bottom:57.640000pt;}
.y7{bottom:59.360000pt;}
.y4e{bottom:63.840000pt;}
.y4c{bottom:65.600000pt;}
.y21{bottom:70.400000pt;}
.y2b{bottom:71.560000pt;}
.y6{bottom:73.920000pt;}
.y4b{bottom:80.640000pt;}
.y2a{bottom:85.320000pt;}
.y20{bottom:87.226667pt;}
.y5{bottom:88.480000pt;}
.y29{bottom:100.520000pt;}
.y1f{bottom:104.026667pt;}
.y1a2{bottom:105.920000pt;}
.y141{bottom:108.160000pt;}
.yc1{bottom:109.120000pt;}
.y8d{bottom:109.920000pt;}
.y4{bottom:111.040000pt;}
.y107{bottom:111.520000pt;}
.y172{bottom:113.120000pt;}
.y28{bottom:117.480000pt;}
.y1e{bottom:120.826667pt;}
.y1a1{bottom:121.120000pt;}
.y140{bottom:123.520000pt;}
.yc0{bottom:124.320000pt;}
.y3d{bottom:124.960000pt;}
.y8c{bottom:125.280000pt;}
.y4a{bottom:126.400000pt;}
.y9c{bottom:127.360000pt;}
.y106{bottom:127.840000pt;}
.y171{bottom:128.480000pt;}
.y27{bottom:135.880000pt;}
.y1a0{bottom:136.506667pt;}
.y1d{bottom:137.786667pt;}
.y13f{bottom:138.746667pt;}
.ybf{bottom:139.706667pt;}
.y3c{bottom:140.186667pt;}
.y8b{bottom:140.506667pt;}
.y49{bottom:141.786667pt;}
.y9b{bottom:142.906667pt;}
.y170{bottom:143.866667pt;}
.y105{bottom:144.186667pt;}
.y19f{bottom:151.866667pt;}
.y13e{bottom:154.106667pt;}
.y1c{bottom:154.586667pt;}
.ybe{bottom:155.066667pt;}
.y3b{bottom:155.546667pt;}
.y8a{bottom:155.866667pt;}
.y9a{bottom:156.666667pt;}
.y48{bottom:156.986667pt;}
.y16f{bottom:159.066667pt;}
.ye7{bottom:159.706667pt;}
.y104{bottom:163.866667pt;}
.y19e{bottom:167.066667pt;}
.y13d{bottom:167.226667pt;}
.ybd{bottom:170.266667pt;}
.y3a{bottom:170.746667pt;}
.y89{bottom:171.066667pt;}
.y1b{bottom:171.386667pt;}
.y47{bottom:172.346667pt;}
.ye6{bottom:175.066667pt;}
.y103{bottom:179.226667pt;}
.y19d{bottom:182.426667pt;}
.y13c{bottom:183.226667pt;}
.y16e{bottom:183.546667pt;}
.ybc{bottom:185.626667pt;}
.y39{bottom:186.106667pt;}
.y88{bottom:186.426667pt;}
.y46{bottom:187.706667pt;}
.y1a{bottom:188.186667pt;}
.ye5{bottom:190.586667pt;}
.y102{bottom:194.426667pt;}
.y169{bottom:196.666667pt;}
.y19c{bottom:197.626667pt;}
.y13b{bottom:199.066667pt;}
.ybb{bottom:200.826667pt;}
.y38{bottom:201.466667pt;}
.y87{bottom:201.786667pt;}
.y45{bottom:202.906667pt;}
.ye4{bottom:204.346667pt;}
.y19{bottom:204.986667pt;}
.y101{bottom:209.786667pt;}
.y16d{bottom:212.666667pt;}
.y19b{bottom:212.986667pt;}
.y13a{bottom:215.066667pt;}
.yba{bottom:216.186667pt;}
.y37{bottom:216.666667pt;}
.y86{bottom:216.986667pt;}
.y44{bottom:218.266667pt;}
.y18{bottom:221.786667pt;}
.y100{bottom:224.986667pt;}
.y19a{bottom:228.506667pt;}
.y16c{bottom:228.666667pt;}
.y139{bottom:231.066667pt;}
.yb9{bottom:231.546667pt;}
.y36{bottom:232.026667pt;}
.y85{bottom:232.346667pt;}
.y43{bottom:233.626667pt;}
.y17{bottom:238.746667pt;}
.yff{bottom:240.346667pt;}
.y16b{bottom:244.666667pt;}
.y199{bottom:245.786667pt;}
.yb8{bottom:246.746667pt;}
.y138{bottom:247.066667pt;}
.y35{bottom:247.386667pt;}
.y84{bottom:247.706667pt;}
.y42{bottom:248.826667pt;}
.y16{bottom:255.546667pt;}
.yfe{bottom:255.706667pt;}
.y168{bottom:260.506667pt;}
.y198{bottom:261.466667pt;}
.yb7{bottom:262.266667pt;}
.y34{bottom:262.586667pt;}
.y83{bottom:262.906667pt;}
.y41{bottom:264.186667pt;}
.yfd{bottom:270.906667pt;}
.y15{bottom:272.346667pt;}
.y197{bottom:276.666667pt;}
.y33{bottom:277.946667pt;}
.y82{bottom:278.266667pt;}
.y137{bottom:278.906667pt;}
.yb6{bottom:279.066667pt;}
.y40{bottom:279.386667pt;}
.yfc{bottom:286.266667pt;}
.y14{bottom:289.146667pt;}
.y167{bottom:291.866667pt;}
.y196{bottom:292.026667pt;}
.y32{bottom:293.146667pt;}
.y81{bottom:293.466667pt;}
.y3f{bottom:294.746667pt;}
.y136{bottom:294.906667pt;}
.yb5{bottom:295.706667pt;}
.yfb{bottom:301.626667pt;}
.y13{bottom:305.986667pt;}
.y195{bottom:307.226667pt;}
.y31{bottom:308.666667pt;}
.y80{bottom:308.826667pt;}
.y3e{bottom:310.106667pt;}
.y135{bottom:310.906667pt;}
.yb4{bottom:314.586667pt;}
.yfa{bottom:316.826667pt;}
.y194{bottom:322.586667pt;}
.y166{bottom:323.066667pt;}
.y7f{bottom:324.186667pt;}
.y134{bottom:329.946667pt;}
.yf9{bottom:332.186667pt;}
.yb3{bottom:333.626667pt;}
.y193{bottom:337.946667pt;}
.y7e{bottom:339.386667pt;}
.y26{bottom:340.346667pt;}
.y165{bottom:342.106667pt;}
.y133{bottom:346.586667pt;}
.yf8{bottom:347.386667pt;}
.yb2{bottom:352.506667pt;}
.y192{bottom:353.146667pt;}
.y7d{bottom:354.746667pt;}
.y164{bottom:358.786667pt;}
.y130{bottom:362.466667pt;}
.yf7{bottom:362.786667pt;}
.yb1{bottom:367.746667pt;}
.y132{bottom:368.386667pt;}
.y191{bottom:368.546667pt;}
.y7c{bottom:370.146667pt;}
.y153{bottom:374.146667pt;}
.yf6{bottom:378.146667pt;}
.y131{bottom:382.146667pt;}
.yb0{bottom:383.106667pt;}
.y190{bottom:383.906667pt;}
.y7b{bottom:385.346667pt;}
.y152{bottom:387.266667pt;}
.y163{bottom:389.026667pt;}
.yf5{bottom:393.346667pt;}
.y12f{bottom:393.506667pt;}
.yaf{bottom:398.306667pt;}
.y18f{bottom:399.106667pt;}
.y99{bottom:399.586667pt;}
.y7a{bottom:400.706667pt;}
.y151{bottom:403.106667pt;}
.y162{bottom:404.386667pt;}
.yf4{bottom:408.706667pt;}
.y12e{bottom:412.386667pt;}
.yae{bottom:413.666667pt;}
.ye3{bottom:414.146667pt;}
.y18e{bottom:414.466667pt;}
.y98{bottom:414.786667pt;}
.y79{bottom:415.906667pt;}
.y150{bottom:419.106667pt;}
.y161{bottom:419.746667pt;}
.yf3{bottom:424.066667pt;}
.y12d{bottom:427.746667pt;}
.yad{bottom:429.026667pt;}
.ye2{bottom:429.666667pt;}
.y97{bottom:430.146667pt;}
.y78{bottom:431.266667pt;}
.y160{bottom:434.946667pt;}
.y14f{bottom:435.106667pt;}
.yf2{bottom:439.266667pt;}
.yac{bottom:444.226667pt;}
.ye1{bottom:445.026667pt;}
.y96{bottom:445.346667pt;}
.y77{bottom:446.626667pt;}
.y15f{bottom:450.306667pt;}
.y14e{bottom:451.106667pt;}
.yf1{bottom:454.786667pt;}
.yab{bottom:459.586667pt;}
.ye0{bottom:460.226667pt;}
.y18d{bottom:460.386667pt;}
.y95{bottom:460.706667pt;}
.y76{bottom:461.826667pt;}
.y15e{bottom:465.666667pt;}
.y14d{bottom:467.106667pt;}
.yf0{bottom:468.546667pt;}
.yaa{bottom:474.786667pt;}
.ydf{bottom:475.586667pt;}
.y94{bottom:476.066667pt;}
.y75{bottom:477.186667pt;}
.y12c{bottom:480.706667pt;}
.y15d{bottom:480.866667pt;}
.y14c{bottom:482.946667pt;}
.ya9{bottom:490.146667pt;}
.yde{bottom:490.946667pt;}
.y93{bottom:491.266667pt;}
.y74{bottom:492.546667pt;}
.y12{bottom:492.706667pt;}
.y12b{bottom:496.066667pt;}
.y15c{bottom:496.226667pt;}
.y14b{bottom:498.946667pt;}
.ya8{bottom:505.506667pt;}
.ydd{bottom:506.146667pt;}
.y18c{bottom:506.306667pt;}
.y92{bottom:506.786667pt;}
.y73{bottom:507.746667pt;}
.y12a{bottom:511.266667pt;}
.y15b{bottom:511.426667pt;}
.y14a{bottom:514.946667pt;}
.ya7{bottom:520.706667pt;}
.ydc{bottom:521.506667pt;}
.y72{bottom:523.106667pt;}
.y91{bottom:523.426667pt;}
.y129{bottom:526.626667pt;}
.y15a{bottom:526.786667pt;}
.ydb{bottom:534.626667pt;}
.ya6{bottom:536.226667pt;}
.y18b{bottom:536.866667pt;}
.y71{bottom:538.306667pt;}
.y90{bottom:538.946667pt;}
.y128{bottom:541.986667pt;}
.y159{bottom:542.146667pt;}
.y149{bottom:546.146667pt;}
.yda{bottom:550.626667pt;}
.ya5{bottom:551.906667pt;}
.y18a{bottom:552.066667pt;}
.y8f{bottom:552.706667pt;}
.y70{bottom:553.666667pt;}
.y127{bottom:557.186667pt;}
.y158{bottom:557.346667pt;}
.y148{bottom:562.146667pt;}
.yd9{bottom:566.466667pt;}
.ya4{bottom:567.426667pt;}
.y6f{bottom:569.026667pt;}
.y126{bottom:572.546667pt;}
.y157{bottom:572.706667pt;}
.y147{bottom:581.053333pt;}
.yd8{bottom:582.493333pt;}
.y189{bottom:582.813333pt;}
.ya3{bottom:582.973333pt;}
.y6e{bottom:584.253333pt;}
.y125{bottom:587.933333pt;}
.y156{bottom:588.093333pt;}
.y146{bottom:596.573333pt;}
.y188{bottom:598.013333pt;}
.ya2{bottom:598.333333pt;}
.yd7{bottom:598.493333pt;}
.y6d{bottom:599.613333pt;}
.y124{bottom:603.133333pt;}
.y155{bottom:603.453333pt;}
.y145{bottom:613.213333pt;}
.y187{bottom:613.373333pt;}
.ya1{bottom:613.533333pt;}
.yd6{bottom:614.493333pt;}
.y6c{bottom:614.813333pt;}
.y154{bottom:617.213333pt;}
.y123{bottom:618.493333pt;}
.y144{bottom:628.733333pt;}
.ya0{bottom:629.053333pt;}
.y6b{bottom:630.173333pt;}
.yd5{bottom:630.333333pt;}
.y122{bottom:633.693333pt;}
.y143{bottom:642.493333pt;}
.y186{bottom:643.933333pt;}
.y9f{bottom:644.573333pt;}
.y6a{bottom:645.533333pt;}
.yd4{bottom:646.333333pt;}
.y121{bottom:649.053333pt;}
.y185{bottom:659.293333pt;}
.y9e{bottom:659.773333pt;}
.y69{bottom:660.733333pt;}
.y120{bottom:662.173333pt;}
.yd3{bottom:662.333333pt;}
.yef{bottom:667.453333pt;}
.y184{bottom:674.493333pt;}
.y9d{bottom:675.773333pt;}
.y68{bottom:676.093333pt;}
.y11f{bottom:678.173333pt;}
.yd2{bottom:678.333333pt;}
.yee{bottom:682.813333pt;}
.y183{bottom:689.853333pt;}
.y67{bottom:691.453333pt;}
.y11e{bottom:694.013333pt;}
.yd0{bottom:694.333333pt;}
.yed{bottom:698.013333pt;}
.y182{bottom:705.213333pt;}
.y66{bottom:706.653333pt;}
.y11d{bottom:710.013333pt;}
.yec{bottom:713.373333pt;}
.y181{bottom:720.413333pt;}
.y65{bottom:722.013333pt;}
.ycf{bottom:725.533333pt;}
.y11b{bottom:726.013333pt;}
.yeb{bottom:728.573333pt;}
.y180{bottom:735.773333pt;}
.y64{bottom:737.213333pt;}
.yce{bottom:741.533333pt;}
.yea{bottom:743.933333pt;}
.y17f{bottom:751.133333pt;}
.y8e{bottom:752.253333pt;}
.y63{bottom:752.573333pt;}
.ycd{bottom:757.533333pt;}
.ye9{bottom:759.453333pt;}
.y11a{bottom:760.413333pt;}
.y17e{bottom:766.333333pt;}
.y62{bottom:767.933333pt;}
.ye8{bottom:773.213333pt;}
.ycc{bottom:773.373333pt;}
.y119{bottom:777.053333pt;}
.y17d{bottom:781.693333pt;}
.y61{bottom:783.133333pt;}
.ycb{bottom:789.373333pt;}
.y118{bottom:792.253333pt;}
.y17c{bottom:796.893333pt;}
.y60{bottom:798.533333pt;}
.yca{bottom:805.413333pt;}
.y117{bottom:807.653333pt;}
.y17b{bottom:812.293333pt;}
.y5f{bottom:813.893333pt;}
.y11{bottom:816.453333pt;}
.yc9{bottom:821.413333pt;}
.y116{bottom:822.853333pt;}
.y17a{bottom:827.653333pt;}
.y5e{bottom:829.093333pt;}
.y10{bottom:833.413333pt;}
.yc8{bottom:837.413333pt;}
.y115{bottom:838.213333pt;}
.y179{bottom:842.853333pt;}
.y5d{bottom:844.453333pt;}
.yf{bottom:850.373333pt;}
.yc7{bottom:853.253333pt;}
.y114{bottom:853.573333pt;}
.y178{bottom:858.213333pt;}
.y5c{bottom:859.653333pt;}
.y113{bottom:868.773333pt;}
.yc6{bottom:869.253333pt;}
.ye{bottom:869.413333pt;}
.y177{bottom:873.413333pt;}
.y1a3{bottom:874.693333pt;}
.y5b{bottom:875.013333pt;}
.y112{bottom:884.133333pt;}
.yc4{bottom:885.253333pt;}
.yd{bottom:886.213333pt;}
.y176{bottom:888.773333pt;}
.y142{bottom:890.053333pt;}
.y5a{bottom:890.373333pt;}
.y111{bottom:899.493333pt;}
.yc3{bottom:904.133333pt;}
.yc{bottom:905.413333pt;}
.y59{bottom:905.573333pt;}
.y110{bottom:914.693333pt;}
.y175{bottom:919.333333pt;}
.yc2{bottom:919.653333pt;}
.y58{bottom:920.933333pt;}
.yb{bottom:924.293333pt;}
.y10f{bottom:930.053333pt;}
.y174{bottom:934.693333pt;}
.y57{bottom:936.293333pt;}
.y10e{bottom:943.173333pt;}
.y173{bottom:950.213333pt;}
.y56{bottom:951.493333pt;}
.ya{bottom:951.813333pt;}
.y10d{bottom:959.013333pt;}
.y55{bottom:966.853333pt;}
.y10c{bottom:975.013333pt;}
.y54{bottom:982.053333pt;}
.y9{bottom:988.293333pt;}
.y10b{bottom:991.013333pt;}
.y53{bottom:997.413333pt;}
.y8{bottom:1002.853333pt;}
.y10a{bottom:1007.013333pt;}
.y52{bottom:1012.773333pt;}
.y3{bottom:1020.960000pt;}
.y109{bottom:1023.040000pt;}
.y51{bottom:1028.000000pt;}
.y2{bottom:1040.640000pt;}
.y108{bottom:1042.080000pt;}
.y50{bottom:1043.360000pt;}
.y1{bottom:1060.160000pt;}
.h18{height:15.200000pt;}
.h1b{height:15.232000pt;}
.h17{height:15.360000pt;}
.h19{height:15.392000pt;}
.h12{height:17.920000pt;}
.h1a{height:30.560000pt;}
.h1c{height:30.720000pt;}
.h3{height:32.507812pt;}
.hf{height:34.945312pt;}
.h5{height:35.975313pt;}
.h16{height:38.024375pt;}
.h14{height:38.672812pt;}
.h15{height:39.917813pt;}
.h9{height:42.866250pt;}
.hd{height:43.265625pt;}
.h13{height:43.343750pt;}
.h7{height:44.246250pt;}
.h11{height:45.696000pt;}
.h10{height:47.880625pt;}
.hc{height:51.941250pt;}
.h4{height:53.072500pt;}
.ha{height:56.269687pt;}
.he{height:58.563750pt;}
.h1d{height:63.200000pt;}
.h2{height:63.656250pt;}
.h6{height:69.890625pt;}
.hb{height:152.346667pt;}
.h8{height:319.746667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:44.032000pt;}
.w19{width:68.000000pt;}
.wc{width:73.312000pt;}
.w1a{width:74.592000pt;}
.w1b{width:83.520000pt;}
.w1c{width:95.392000pt;}
.w17{width:96.832000pt;}
.w10{width:115.552000pt;}
.w16{width:116.160000pt;}
.w9{width:123.040000pt;}
.w11{width:123.392000pt;}
.wa{width:126.592000pt;}
.we{width:128.960000pt;}
.wf{width:135.866667pt;}
.w6{width:137.440000pt;}
.wb{width:160.186667pt;}
.w5{width:204.546667pt;}
.w13{width:209.626667pt;}
.wd{width:210.626667pt;}
.w14{width:215.906667pt;}
.w15{width:225.986667pt;}
.w8{width:231.266667pt;}
.w12{width:290.146667pt;}
.w18{width:295.266667pt;}
.w1d{width:323.426667pt;}
.w7{width:342.786667pt;}
.w3{width:793.599976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:6.880000pt;}
.x6{left:15.066667pt;}
.x1{left:37.759988pt;}
.xe{left:41.599988pt;}
.xa{left:44.319988pt;}
.x8{left:75.871988pt;}
.x25{left:80.671988pt;}
.xb{left:100.351988pt;}
.xf{left:117.311988pt;}
.x9{left:122.591988pt;}
.x2b{left:136.026667pt;}
.x26{left:152.026655pt;}
.x24{left:209.786655pt;}
.x21{left:230.426655pt;}
.xd{left:243.746667pt;}
.x1b{left:249.666667pt;}
.x27{left:265.026667pt;}
.x17{left:270.306667pt;}
.x16{left:287.426655pt;}
.x2a{left:324.066655pt;}
.x22{left:329.186667pt;}
.x1c{left:379.266667pt;}
.x7{left:381.826655pt;}
.x18{left:393.986667pt;}
.x4{left:396.893322pt;}
.x3{left:412.093322pt;}
.x11{left:415.933322pt;}
.x14{left:426.653322pt;}
.x2c{left:431.933333pt;}
.x20{left:434.813322pt;}
.x28{left:451.133322pt;}
.x12{left:500.733322pt;}
.x1d{left:515.773333pt;}
.x19{left:521.213333pt;}
.x29{left:526.333322pt;}
.x23{left:539.453333pt;}
.x15{left:543.613322pt;}
.x2d{left:575.813333pt;}
.x1e{left:631.973333pt;}
.x2e{left:659.973333pt;}
.x2{left:667.973322pt;}
.x1a{left:682.053333pt;}
.x5{left:710.053333pt;}
.x1f{left:754.079988pt;}
.x10{left:756.159988pt;}
.x13{left:760.159988pt;}
}




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