
    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_01e0c9c5c21f374b713124a7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_c8e4bb7bfc8459f0d5ac7f4a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_8b427688b8b27f3465d02e10.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_826c629512ec75e2e8041753.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.775879;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_beba7900a45a8bafc507972f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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_81a9e52dd413ed96517a715f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_7ef26ac8dd9845dc1189416b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.090820;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_93c532139b6a8a460e6b4c22.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_e42d072a09adf2c569b5764a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.056152;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_8eb69070834e91bf46984dfa.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.116699;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_e441280bef11b1623b474271.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.050293;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_442f1e99b25fd3fa464885d2.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.009277;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_d4591139c8165c9891f46f21.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.402354;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;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.v1{vertical-align:-69.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:20.880000px;}
.ls9a{letter-spacing:-2.700000px;}
.lsa2{letter-spacing:-1.260000px;}
.ls8f{letter-spacing:-1.182000px;}
.ls35{letter-spacing:-1.080000px;}
.ls2f{letter-spacing:-0.924000px;}
.ls73{letter-spacing:-0.912000px;}
.ls38{letter-spacing:-0.774000px;}
.ls88{letter-spacing:-0.678000px;}
.ls69{letter-spacing:-0.666000px;}
.ls92{letter-spacing:-0.624000px;}
.ls7b{letter-spacing:-0.618000px;}
.ls8a{letter-spacing:-0.612000px;}
.ls30{letter-spacing:-0.540000px;}
.ls61{letter-spacing:-0.513600px;}
.ls34{letter-spacing:-0.460200px;}
.ls33{letter-spacing:-0.413400px;}
.lsc{letter-spacing:-0.360000px;}
.lsa3{letter-spacing:-0.294600px;}
.lsa5{letter-spacing:-0.250800px;}
.ls2e{letter-spacing:-0.206400px;}
.ls37{letter-spacing:-0.106800px;}
.lsa4{letter-spacing:-0.097200px;}
.ls9{letter-spacing:-0.058320px;}
.lsa{letter-spacing:-0.053280px;}
.ls8{letter-spacing:0.000000px;}
.ls26{letter-spacing:0.053280px;}
.ls9d{letter-spacing:0.073440px;}
.ls3{letter-spacing:0.082560px;}
.ls7c{letter-spacing:0.097800px;}
.ls4f{letter-spacing:0.100800px;}
.ls2{letter-spacing:0.106560px;}
.lsd{letter-spacing:0.106800px;}
.ls94{letter-spacing:0.126720px;}
.ls44{letter-spacing:0.153360px;}
.ls93{letter-spacing:0.153600px;}
.ls11{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.206400px;}
.ls3b{letter-spacing:0.206640px;}
.ls32{letter-spacing:0.259800px;}
.ls0{letter-spacing:0.259920px;}
.ls18{letter-spacing:0.286560px;}
.ls29{letter-spacing:0.298800px;}
.ls36{letter-spacing:0.306600px;}
.ls1f{letter-spacing:0.306720px;}
.ls3f{letter-spacing:0.336000px;}
.ls4{letter-spacing:0.360000px;}
.ls21{letter-spacing:0.439920px;}
.ls3e{letter-spacing:0.486720px;}
.ls31{letter-spacing:0.513600px;}
.ls19{letter-spacing:0.540000px;}
.ls54{letter-spacing:0.612000px;}
.ls7d{letter-spacing:0.666000px;}
.ls15{letter-spacing:0.826560px;}
.ls12{letter-spacing:0.900000px;}
.ls89{letter-spacing:0.978000px;}
.ls6c{letter-spacing:0.979920px;}
.ls79{letter-spacing:1.006560px;}
.ls72{letter-spacing:1.080000px;}
.ls17{letter-spacing:1.620000px;}
.ls13{letter-spacing:2.340000px;}
.ls16{letter-spacing:3.060000px;}
.ls2d{letter-spacing:3.240000px;}
.ls5{letter-spacing:3.780000px;}
.ls6{letter-spacing:4.476000px;}
.ls7{letter-spacing:4.500000px;}
.ls2c{letter-spacing:4.680000px;}
.ls14{letter-spacing:5.220000px;}
.ls99{letter-spacing:5.400000px;}
.ls28{letter-spacing:5.940000px;}
.ls23{letter-spacing:6.660000px;}
.lse{letter-spacing:7.380000px;}
.ls1c{letter-spacing:8.100000px;}
.ls10{letter-spacing:8.820000px;}
.ls47{letter-spacing:9.540000px;}
.ls70{letter-spacing:10.260000px;}
.ls45{letter-spacing:10.980000px;}
.ls87{letter-spacing:11.160000px;}
.ls39{letter-spacing:11.700000px;}
.lsf{letter-spacing:12.420000px;}
.ls51{letter-spacing:13.140000px;}
.ls1d{letter-spacing:13.860000px;}
.ls43{letter-spacing:14.580000px;}
.ls2b{letter-spacing:15.300000px;}
.ls5d{letter-spacing:16.020000px;}
.ls50{letter-spacing:16.200000px;}
.ls4c{letter-spacing:16.740000px;}
.ls67{letter-spacing:17.460000px;}
.ls2a{letter-spacing:18.180000px;}
.ls1a{letter-spacing:18.900000px;}
.ls1b{letter-spacing:19.620000px;}
.ls6d{letter-spacing:20.340000px;}
.ls4e{letter-spacing:21.060000px;}
.ls5a{letter-spacing:21.780000px;}
.ls24{letter-spacing:22.500000px;}
.ls4a{letter-spacing:23.220000px;}
.ls77{letter-spacing:23.940000px;}
.ls90{letter-spacing:24.636000px;}
.ls4d{letter-spacing:24.660000px;}
.ls68{letter-spacing:25.380000px;}
.ls57{letter-spacing:26.100000px;}
.ls8b{letter-spacing:26.820000px;}
.ls66{letter-spacing:27.540000px;}
.ls53{letter-spacing:28.260000px;}
.ls75{letter-spacing:28.980000px;}
.ls5c{letter-spacing:29.700000px;}
.ls40{letter-spacing:30.420000px;}
.ls27{letter-spacing:31.140000px;}
.ls59{letter-spacing:31.320000px;}
.ls22{letter-spacing:31.860000px;}
.ls85{letter-spacing:32.040000px;}
.ls3a{letter-spacing:32.580000px;}
.ls3d{letter-spacing:33.300000px;}
.ls83{letter-spacing:34.020000px;}
.ls81{letter-spacing:34.716000px;}
.ls7a{letter-spacing:34.740000px;}
.ls49{letter-spacing:35.460000px;}
.ls48{letter-spacing:35.640000px;}
.ls6a{letter-spacing:36.180000px;}
.ls84{letter-spacing:36.900000px;}
.ls52{letter-spacing:37.620000px;}
.ls5f{letter-spacing:38.340000px;}
.ls42{letter-spacing:39.060000px;}
.ls74{letter-spacing:39.780000px;}
.ls71{letter-spacing:40.500000px;}
.ls8c{letter-spacing:41.196000px;}
.ls97{letter-spacing:41.940000px;}
.ls1e{letter-spacing:42.660000px;}
.ls56{letter-spacing:43.380000px;}
.ls9e{letter-spacing:44.100000px;}
.ls82{letter-spacing:44.820000px;}
.ls9f{letter-spacing:45.306720px;}
.ls95{letter-spacing:45.540000px;}
.ls3c{letter-spacing:46.260000px;}
.ls46{letter-spacing:46.440000px;}
.ls8d{letter-spacing:47.700000px;}
.ls9b{letter-spacing:48.420000px;}
.ls63{letter-spacing:49.140000px;}
.ls6b{letter-spacing:49.860000px;}
.ls64{letter-spacing:50.580000px;}
.lsa0{letter-spacing:51.300000px;}
.ls25{letter-spacing:51.480000px;}
.ls91{letter-spacing:52.020000px;}
.ls7e{letter-spacing:53.640000px;}
.ls20{letter-spacing:54.900000px;}
.ls58{letter-spacing:55.620000px;}
.ls60{letter-spacing:56.520000px;}
.ls86{letter-spacing:58.500000px;}
.ls8e{letter-spacing:59.220000px;}
.ls5b{letter-spacing:60.660000px;}
.ls98{letter-spacing:63.540000px;}
.ls41{letter-spacing:64.260000px;}
.lsa1{letter-spacing:65.700000px;}
.ls65{letter-spacing:66.600000px;}
.ls80{letter-spacing:69.300000px;}
.ls55{letter-spacing:70.740000px;}
.ls5e{letter-spacing:73.080000px;}
.ls6f{letter-spacing:73.620000px;}
.ls7f{letter-spacing:74.520000px;}
.ls62{letter-spacing:76.476000px;}
.ls76{letter-spacing:76.680000px;}
.ls6e{letter-spacing:77.220000px;}
.ls96{letter-spacing:78.660000px;}
.lsa6{letter-spacing:80.820000px;}
.ls78{letter-spacing:86.580000px;}
.ls4b{letter-spacing:110.340000px;}
.lsa7{letter-spacing:200.340000px;}
.ls9c{letter-spacing:442.236000px;}
.ls1{letter-spacing:603.000000px;}
.sc_{text-shadow:none;}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws10{word-spacing:-62.991941px;}
.ws0{word-spacing:-59.760000px;}
.ws1c{word-spacing:-59.662800px;}
.ws1d{word-spacing:-59.509200px;}
.ws1b{word-spacing:-59.465400px;}
.ws12{word-spacing:-16.020000px;}
.ws18{word-spacing:-15.453600px;}
.ws2{word-spacing:-15.300000px;}
.wse{word-spacing:-15.246600px;}
.wsd{word-spacing:-15.238800px;}
.ws13{word-spacing:-15.199920px;}
.wsa{word-spacing:-15.199800px;}
.ws5{word-spacing:-15.146400px;}
.ws19{word-spacing:-15.093600px;}
.ws6{word-spacing:-15.046800px;}
.ws1a{word-spacing:-15.046560px;}
.ws11{word-spacing:-15.040800px;}
.ws15{word-spacing:-15.037800px;}
.ws9{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.886720px;}
.wsb{word-spacing:-14.833200px;}
.ws8{word-spacing:-14.733600px;}
.wsc{word-spacing:-14.580000px;}
.wsf{word-spacing:-14.479800px;}
.ws17{word-spacing:-14.328000px;}
.ws14{word-spacing:-14.322000px;}
.ws16{word-spacing:-14.262000px;}
.ws1{word-spacing:-13.447440px;}
.ws7{word-spacing:0.000000px;}
._44{margin-left:-16.467600px;}
._48{margin-left:-10.402800px;}
._11{margin-left:-4.652160px;}
._9{margin-left:-3.618720px;}
._8{margin-left:-2.330640px;}
._5{margin-left:-1.314720px;}
._0{width:1.075680px;}
._1{width:2.412480px;}
._4{width:3.867120px;}
._e{width:5.029200px;}
._7{width:6.641280px;}
._6{width:8.187120px;}
._d{width:10.099440px;}
._c{width:11.414160px;}
._b{width:12.669120px;}
._a{width:13.744800px;}
._20{width:16.114800px;}
._15{width:17.128560px;}
._14{width:18.180000px;}
._4f{width:19.182960px;}
._12{width:20.198880px;}
._13{width:21.225120px;}
._3e{width:22.280160px;}
._1e{width:23.306400px;}
._10{width:24.331440px;}
._f{width:25.415760px;}
._22{width:27.250560px;}
._23{width:28.931040px;}
._27{width:30.420000px;}
._1d{width:31.805280px;}
._1c{width:32.914800px;}
._2a{width:34.065840px;}
._25{width:35.557200px;}
._24{width:36.752400px;}
._26{width:38.012880px;}
._21{width:39.800160px;}
._30{width:41.234400px;}
._18{width:42.788160px;}
._17{width:43.867200px;}
._4c{width:44.876400px;}
._16{width:46.200960px;}
._2d{width:47.808000px;}
._2f{width:48.955680px;}
._33{width:50.586960px;}
._1f{width:51.632640px;}
._3f{width:53.272080px;}
._1b{width:54.381600px;}
._1a{width:55.636560px;}
._3c{width:56.817360px;}
._51{width:59.222160px;}
._3a{width:60.240240px;}
._29{width:61.313760px;}
._19{width:63.345600px;}
._2c{width:64.722720px;}
._56{width:65.823360px;}
._45{width:66.874320px;}
._50{width:67.977360px;}
._31{width:69.261840px;}
._32{width:71.602320px;}
._53{width:72.616320px;}
._3b{width:73.684080px;}
._54{width:74.819520px;}
._2b{width:75.825840px;}
._3d{width:77.930160px;}
._52{width:79.792320px;}
._34{width:81.714720px;}
._28{width:83.006640px;}
._4e{width:84.381120px;}
._49{width:86.593440px;}
._60{width:88.020000px;}
._46{width:89.077680px;}
._43{width:90.357120px;}
._36{width:91.458240px;}
._4b{width:92.933040px;}
._37{width:94.060080px;}
._4d{width:97.946640px;}
._5a{width:99.851760px;}
._47{width:101.771040px;}
._42{width:105.263760px;}
._41{width:106.869360px;}
._2e{width:110.436480px;}
._39{width:117.069840px;}
._38{width:118.145520px;}
._55{width:119.699280px;}
._57{width:126.750960px;}
._35{width:138.224880px;}
._58{width:143.775360px;}
._59{width:144.987840px;}
._5f{width:233.614800px;}
._5e{width:234.903600px;}
._5d{width:241.321680px;}
._4a{width:361.076160px;}
._40{width:368.128080px;}
._5c{width:460.630080px;}
._5b{width:461.646000px;}
._61{width:483.637680px;}
._62{width:849.216000px;}
._3{width:1046.941680px;}
._2{width:1308.763920px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:62.991941px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y7e{bottom:88.380000px;}
.y137{bottom:90.540000px;}
.y3e{bottom:92.160000px;}
.yea{bottom:93.060000px;}
.y99{bottom:100.620000px;}
.y80{bottom:102.060000px;}
.yac{bottom:103.140000px;}
.y142{bottom:105.300000px;}
.y7d{bottom:105.660000px;}
.y136{bottom:107.820000px;}
.y3d{bottom:109.440000px;}
.ye9{bottom:110.340000px;}
.y98{bottom:117.900000px;}
.yab{bottom:120.420000px;}
.y7f{bottom:121.860000px;}
.y7c{bottom:122.940000px;}
.y135{bottom:125.100000px;}
.y3c{bottom:126.720000px;}
.ye8{bottom:127.620000px;}
.y97{bottom:135.216000px;}
.yaa{bottom:137.736000px;}
.y141{bottom:139.896000px;}
.y7b{bottom:140.076000px;}
.y134{bottom:142.416000px;}
.y3b{bottom:144.036000px;}
.ye7{bottom:144.936000px;}
.y96{bottom:152.310000px;}
.ya9{bottom:154.830000px;}
.y7a{bottom:157.350000px;}
.y140{bottom:158.610000px;}
.y133{bottom:159.690000px;}
.y3a{bottom:161.310000px;}
.ye6{bottom:162.210000px;}
.y95{bottom:169.590000px;}
.ya8{bottom:172.110000px;}
.y79{bottom:174.630000px;}
.y132{bottom:176.790000px;}
.y13f{bottom:178.230000px;}
.y39{bottom:178.590000px;}
.ye5{bottom:179.310000px;}
.y94{bottom:186.870000px;}
.ya7{bottom:189.390000px;}
.y78{bottom:191.910000px;}
.y131{bottom:194.070000px;}
.y38{bottom:195.690000px;}
.ye4{bottom:196.590000px;}
.y93{bottom:204.150000px;}
.ya6{bottom:206.670000px;}
.y77{bottom:209.190000px;}
.y130{bottom:211.350000px;}
.y37{bottom:212.970000px;}
.ye3{bottom:213.870000px;}
.y92{bottom:221.430000px;}
.ya5{bottom:223.950000px;}
.y76{bottom:226.470000px;}
.y12f{bottom:228.630000px;}
.y36{bottom:230.250000px;}
.ye2{bottom:231.150000px;}
.y91{bottom:238.710000px;}
.yec{bottom:240.150000px;}
.ya4{bottom:241.050000px;}
.y75{bottom:243.570000px;}
.y12e{bottom:245.910000px;}
.y35{bottom:247.530000px;}
.ye1{bottom:248.430000px;}
.y90{bottom:255.810000px;}
.ya3{bottom:258.330000px;}
.yeb{bottom:259.770000px;}
.y74{bottom:260.850000px;}
.y12d{bottom:263.190000px;}
.y34{bottom:264.810000px;}
.ye0{bottom:265.530000px;}
.y8f{bottom:273.090000px;}
.y139{bottom:274.530000px;}
.ya2{bottom:275.610000px;}
.y73{bottom:278.130000px;}
.y12c{bottom:280.290000px;}
.y33{bottom:282.090000px;}
.ydf{bottom:282.810000px;}
.y13e{bottom:284.250000px;}
.y8e{bottom:290.370000px;}
.ya1{bottom:292.890000px;}
.y138{bottom:294.330000px;}
.y72{bottom:295.410000px;}
.y12b{bottom:297.570000px;}
.y32{bottom:299.190000px;}
.yde{bottom:300.090000px;}
.y13d{bottom:304.050000px;}
.y8d{bottom:307.650000px;}
.ya0{bottom:310.170000px;}
.y71{bottom:312.690000px;}
.y12a{bottom:314.850000px;}
.y31{bottom:316.470000px;}
.ydd{bottom:317.370000px;}
.y13c{bottom:323.850000px;}
.y8c{bottom:324.930000px;}
.y9f{bottom:327.450000px;}
.y70{bottom:329.970000px;}
.y129{bottom:332.130000px;}
.y30{bottom:333.750000px;}
.ydc{bottom:334.650000px;}
.y8b{bottom:342.210000px;}
.y13b{bottom:343.650000px;}
.y9e{bottom:344.550000px;}
.y6f{bottom:347.070000px;}
.y128{bottom:349.410000px;}
.y2f{bottom:351.030000px;}
.ydb{bottom:351.930000px;}
.y8a{bottom:359.310000px;}
.y9d{bottom:361.830000px;}
.y13a{bottom:363.270000px;}
.y6e{bottom:364.350000px;}
.y127{bottom:366.510000px;}
.y2e{bottom:368.310000px;}
.yda{bottom:369.030000px;}
.y89{bottom:376.590000px;}
.y9c{bottom:379.110000px;}
.y6d{bottom:381.630000px;}
.y126{bottom:383.790000px;}
.y2d{bottom:385.590000px;}
.yd9{bottom:386.310000px;}
.y88{bottom:393.915000px;}
.y9b{bottom:396.435000px;}
.y6c{bottom:398.955000px;}
.y125{bottom:401.115000px;}
.y2c{bottom:402.735000px;}
.yd8{bottom:405.075000px;}
.y87{bottom:411.195000px;}
.yf0{bottom:413.715000px;}
.y9a{bottom:415.155000px;}
.y6b{bottom:416.235000px;}
.y124{bottom:418.395000px;}
.y2b{bottom:420.015000px;}
.yd7{bottom:423.435000px;}
.y86{bottom:428.475000px;}
.yef{bottom:430.995000px;}
.y6a{bottom:433.335000px;}
.y123{bottom:435.675000px;}
.y2a{bottom:437.295000px;}
.yd6{bottom:440.715000px;}
.y85{bottom:445.575000px;}
.yee{bottom:448.095000px;}
.y69{bottom:450.615000px;}
.y122{bottom:452.955000px;}
.y29{bottom:454.575000px;}
.yd5{bottom:459.255000px;}
.y84{bottom:462.855000px;}
.yfc{bottom:465.375000px;}
.yed{bottom:466.815000px;}
.y68{bottom:467.895000px;}
.y121{bottom:470.055000px;}
.y28{bottom:471.855000px;}
.yd4{bottom:477.615000px;}
.y83{bottom:480.135000px;}
.yfb{bottom:482.655000px;}
.y67{bottom:485.175000px;}
.y120{bottom:488.775000px;}
.y27{bottom:488.955000px;}
.yd3{bottom:494.895000px;}
.y11a{bottom:497.415000px;}
.y82{bottom:498.855000px;}
.yfa{bottom:499.935000px;}
.y66{bottom:502.455000px;}
.y26{bottom:506.235000px;}
.y11f{bottom:507.135000px;}
.yd2{bottom:512.175000px;}
.y119{bottom:514.695000px;}
.yf9{bottom:517.215000px;}
.y81{bottom:518.655000px;}
.y65{bottom:519.735000px;}
.y25{bottom:523.515000px;}
.y11e{bottom:524.415000px;}
.yd1{bottom:529.455000px;}
.y118{bottom:531.975000px;}
.yf8{bottom:534.495000px;}
.y64{bottom:536.835000px;}
.y24{bottom:540.795000px;}
.y11d{bottom:543.135000px;}
.yd0{bottom:546.555000px;}
.y117{bottom:549.075000px;}
.yf7{bottom:551.595000px;}
.y63{bottom:554.115000px;}
.y23{bottom:558.075000px;}
.y11c{bottom:562.755000px;}
.ycf{bottom:563.835000px;}
.y116{bottom:566.355000px;}
.yf6{bottom:568.875000px;}
.y62{bottom:571.395000px;}
.y22{bottom:575.355000px;}
.yce{bottom:582.555000px;}
.y115{bottom:583.635000px;}
.yf5{bottom:586.155000px;}
.y61{bottom:588.675000px;}
.y21{bottom:592.455000px;}
.ycd{bottom:600.915000px;}
.yf4{bottom:603.435000px;}
.y60{bottom:605.955000px;}
.y20{bottom:609.735000px;}
.ycc{bottom:618.195000px;}
.yf3{bottom:620.715000px;}
.y5f{bottom:623.235000px;}
.y1f{bottom:627.015000px;}
.y114{bottom:635.475000px;}
.ycb{bottom:636.915000px;}
.yf2{bottom:637.815000px;}
.y5e{bottom:640.365000px;}
.y1e{bottom:644.325000px;}
.y113{bottom:652.605000px;}
.yca{bottom:655.125000px;}
.y11b{bottom:656.565000px;}
.y5d{bottom:657.645000px;}
.y1d{bottom:661.605000px;}
.y112{bottom:669.885000px;}
.yc9{bottom:672.405000px;}
.y5c{bottom:674.925000px;}
.y1c{bottom:678.885000px;}
.y111{bottom:687.165000px;}
.yc8{bottom:689.685000px;}
.y5b{bottom:692.205000px;}
.y1b{bottom:695.985000px;}
.y110{bottom:704.445000px;}
.yc7{bottom:706.965000px;}
.y5a{bottom:709.485000px;}
.y1a{bottom:713.265000px;}
.y10f{bottom:721.725000px;}
.yc6{bottom:724.245000px;}
.y59{bottom:726.585000px;}
.y19{bottom:730.545000px;}
.y10e{bottom:738.825000px;}
.yc5{bottom:741.345000px;}
.y58{bottom:743.865000px;}
.y18{bottom:747.825000px;}
.y10d{bottom:756.105000px;}
.yc4{bottom:758.625000px;}
.y57{bottom:761.145000px;}
.y17{bottom:765.105000px;}
.y10c{bottom:773.385000px;}
.yc3{bottom:775.905000px;}
.y56{bottom:778.425000px;}
.y16{bottom:782.205000px;}
.y10b{bottom:790.665000px;}
.yc2{bottom:793.185000px;}
.y55{bottom:795.705000px;}
.y15{bottom:799.485000px;}
.y10a{bottom:807.945000px;}
.yc1{bottom:810.465000px;}
.y54{bottom:812.985000px;}
.y14{bottom:816.765000px;}
.y109{bottom:825.225000px;}
.yc0{bottom:827.745000px;}
.y53{bottom:830.085000px;}
.y13{bottom:834.045000px;}
.y108{bottom:842.325000px;}
.ybf{bottom:844.845000px;}
.y52{bottom:847.365000px;}
.y12{bottom:851.325000px;}
.y107{bottom:859.605000px;}
.ybe{bottom:862.125000px;}
.y51{bottom:864.645000px;}
.y11{bottom:868.605000px;}
.y106{bottom:876.885000px;}
.ybd{bottom:879.405000px;}
.y50{bottom:881.925000px;}
.y10{bottom:885.705000px;}
.y151{bottom:886.605000px;}
.y105{bottom:894.210000px;}
.ybc{bottom:896.730000px;}
.y4f{bottom:899.250000px;}
.yf{bottom:903.030000px;}
.y150{bottom:903.930000px;}
.y104{bottom:911.490000px;}
.ybb{bottom:914.010000px;}
.y4e{bottom:916.530000px;}
.ye{bottom:920.310000px;}
.y14f{bottom:921.210000px;}
.y103{bottom:928.770000px;}
.yba{bottom:931.110000px;}
.y4d{bottom:933.630000px;}
.y14e{bottom:938.490000px;}
.y102{bottom:945.870000px;}
.yb9{bottom:948.390000px;}
.yf1{bottom:949.830000px;}
.y4c{bottom:950.910000px;}
.yd{bottom:954.870000px;}
.y14d{bottom:955.590000px;}
.y101{bottom:963.150000px;}
.yb8{bottom:965.670000px;}
.y4b{bottom:968.190000px;}
.yc{bottom:972.150000px;}
.y14c{bottom:972.870000px;}
.y100{bottom:980.430000px;}
.yb7{bottom:982.950000px;}
.y4a{bottom:985.470000px;}
.yb{bottom:989.250000px;}
.y14b{bottom:990.150000px;}
.yff{bottom:997.710000px;}
.yb6{bottom:1000.230000px;}
.y49{bottom:1002.750000px;}
.ya{bottom:1006.530000px;}
.y14a{bottom:1007.430000px;}
.yfe{bottom:1016.430000px;}
.yb5{bottom:1017.510000px;}
.y48{bottom:1020.030000px;}
.y9{bottom:1023.810000px;}
.y149{bottom:1024.710000px;}
.yb4{bottom:1034.610000px;}
.yfd{bottom:1036.050000px;}
.y47{bottom:1037.130000px;}
.y8{bottom:1041.090000px;}
.y148{bottom:1041.990000px;}
.yb3{bottom:1051.890000px;}
.y46{bottom:1054.410000px;}
.y7{bottom:1058.370000px;}
.y147{bottom:1060.530000px;}
.yb2{bottom:1069.170000px;}
.y45{bottom:1071.690000px;}
.y6{bottom:1075.650000px;}
.y146{bottom:1080.330000px;}
.yb1{bottom:1086.450000px;}
.y44{bottom:1088.970000px;}
.y145{bottom:1100.130000px;}
.yb0{bottom:1103.730000px;}
.y43{bottom:1106.250000px;}
.y5{bottom:1110.030000px;}
.y144{bottom:1119.930000px;}
.yaf{bottom:1121.010000px;}
.y42{bottom:1123.350000px;}
.y4{bottom:1127.310000px;}
.yae{bottom:1138.110000px;}
.y143{bottom:1139.550000px;}
.y41{bottom:1140.630000px;}
.y3{bottom:1144.620000px;}
.yad{bottom:1156.860000px;}
.y40{bottom:1157.940000px;}
.y2{bottom:1164.780000px;}
.y3f{bottom:1175.220000px;}
.y1{bottom:1195.560000px;}
.h9{height:45.767582px;}
.h8{height:49.868086px;}
.h7{height:50.218242px;}
.hb{height:52.027383px;}
.h5{height:58.621992px;}
.h6{height:58.651172px;}
.ha{height:59.038594px;}
.h2{height:59.439023px;}
.h4{height:60.226875px;}
.hc{height:61.423863px;}
.h3{height:105.996094px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.415987px;}
.x2c{left:111.455987px;}
.x4{left:118.475987px;}
.x14{left:136.115987px;}
.x43{left:144.035987px;}
.xb{left:151.769987px;}
.x18{left:153.929987px;}
.x34{left:155.549987px;}
.x3d{left:157.889987px;}
.x35{left:159.329987px;}
.x44{left:167.429987px;}
.x1a{left:184.889987px;}
.x3c{left:193.349987px;}
.x37{left:200.909987px;}
.x2d{left:202.709987px;}
.x38{left:204.689987px;}
.x39{left:215.849987px;}
.x2e{left:220.349987px;}
.x3a{left:223.769987px;}
.x3e{left:234.389987px;}
.x36{left:249.869987px;}
.x2f{left:267.554987px;}
.x3f{left:272.054987px;}
.x2{left:275.294987px;}
.x40{left:277.814987px;}
.x1b{left:286.994987px;}
.x13{left:288.614987px;}
.x12{left:318.314987px;}
.x45{left:328.574987px;}
.x1c{left:333.974987px;}
.x46{left:335.234987px;}
.x3b{left:340.634987px;}
.x16{left:348.374987px;}
.x5{left:371.774987px;}
.x33{left:398.414987px;}
.xc{left:400.214987px;}
.x41{left:404.174987px;}
.x47{left:422.354987px;}
.x42{left:425.234987px;}
.x9{left:428.294987px;}
.x17{left:435.854987px;}
.x15{left:457.304987px;}
.x3{left:461.444987px;}
.x19{left:487.004987px;}
.xf{left:490.964987px;}
.x30{left:531.644987px;}
.x10{left:537.944987px;}
.x22{left:545.684987px;}
.x26{left:547.124987px;}
.x2a{left:575.924987px;}
.x8{left:587.984987px;}
.xe{left:589.604987px;}
.x1d{left:596.804987px;}
.xd{left:603.464987px;}
.xa{left:607.064987px;}
.x23{left:610.664987px;}
.x27{left:612.284987px;}
.x24{left:614.984987px;}
.x28{left:617.864987px;}
.x31{left:624.749987px;}
.x6{left:630.509987px;}
.x2b{left:642.389987px;}
.x1e{left:663.269987px;}
.x32{left:672.449987px;}
.x7{left:678.029987px;}
.x25{left:683.969987px;}
.x29{left:687.029987px;}
.x1f{left:694.589987px;}
.x20{left:697.649987px;}
.x21{left:744.809987px;}
.x11{left:786.749987px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.560000pt;}
.ls9a{letter-spacing:-2.400000pt;}
.lsa2{letter-spacing:-1.120000pt;}
.ls8f{letter-spacing:-1.050667pt;}
.ls35{letter-spacing:-0.960000pt;}
.ls2f{letter-spacing:-0.821333pt;}
.ls73{letter-spacing:-0.810667pt;}
.ls38{letter-spacing:-0.688000pt;}
.ls88{letter-spacing:-0.602667pt;}
.ls69{letter-spacing:-0.592000pt;}
.ls92{letter-spacing:-0.554667pt;}
.ls7b{letter-spacing:-0.549333pt;}
.ls8a{letter-spacing:-0.544000pt;}
.ls30{letter-spacing:-0.480000pt;}
.ls61{letter-spacing:-0.456533pt;}
.ls34{letter-spacing:-0.409067pt;}
.ls33{letter-spacing:-0.367467pt;}
.lsc{letter-spacing:-0.320000pt;}
.lsa3{letter-spacing:-0.261867pt;}
.lsa5{letter-spacing:-0.222933pt;}
.ls2e{letter-spacing:-0.183467pt;}
.ls37{letter-spacing:-0.094933pt;}
.lsa4{letter-spacing:-0.086400pt;}
.ls9{letter-spacing:-0.051840pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:0.000000pt;}
.ls26{letter-spacing:0.047360pt;}
.ls9d{letter-spacing:0.065280pt;}
.ls3{letter-spacing:0.073387pt;}
.ls7c{letter-spacing:0.086933pt;}
.ls4f{letter-spacing:0.089600pt;}
.ls2{letter-spacing:0.094720pt;}
.lsd{letter-spacing:0.094933pt;}
.ls94{letter-spacing:0.112640pt;}
.ls44{letter-spacing:0.136320pt;}
.ls93{letter-spacing:0.136533pt;}
.ls11{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.183467pt;}
.ls3b{letter-spacing:0.183680pt;}
.ls32{letter-spacing:0.230933pt;}
.ls0{letter-spacing:0.231040pt;}
.ls18{letter-spacing:0.254720pt;}
.ls29{letter-spacing:0.265600pt;}
.ls36{letter-spacing:0.272533pt;}
.ls1f{letter-spacing:0.272640pt;}
.ls3f{letter-spacing:0.298667pt;}
.ls4{letter-spacing:0.320000pt;}
.ls21{letter-spacing:0.391040pt;}
.ls3e{letter-spacing:0.432640pt;}
.ls31{letter-spacing:0.456533pt;}
.ls19{letter-spacing:0.480000pt;}
.ls54{letter-spacing:0.544000pt;}
.ls7d{letter-spacing:0.592000pt;}
.ls15{letter-spacing:0.734720pt;}
.ls12{letter-spacing:0.800000pt;}
.ls89{letter-spacing:0.869333pt;}
.ls6c{letter-spacing:0.871040pt;}
.ls79{letter-spacing:0.894720pt;}
.ls72{letter-spacing:0.960000pt;}
.ls17{letter-spacing:1.440000pt;}
.ls13{letter-spacing:2.080000pt;}
.ls16{letter-spacing:2.720000pt;}
.ls2d{letter-spacing:2.880000pt;}
.ls5{letter-spacing:3.360000pt;}
.ls6{letter-spacing:3.978667pt;}
.ls7{letter-spacing:4.000000pt;}
.ls2c{letter-spacing:4.160000pt;}
.ls14{letter-spacing:4.640000pt;}
.ls99{letter-spacing:4.800000pt;}
.ls28{letter-spacing:5.280000pt;}
.ls23{letter-spacing:5.920000pt;}
.lse{letter-spacing:6.560000pt;}
.ls1c{letter-spacing:7.200000pt;}
.ls10{letter-spacing:7.840000pt;}
.ls47{letter-spacing:8.480000pt;}
.ls70{letter-spacing:9.120000pt;}
.ls45{letter-spacing:9.760000pt;}
.ls87{letter-spacing:9.920000pt;}
.ls39{letter-spacing:10.400000pt;}
.lsf{letter-spacing:11.040000pt;}
.ls51{letter-spacing:11.680000pt;}
.ls1d{letter-spacing:12.320000pt;}
.ls43{letter-spacing:12.960000pt;}
.ls2b{letter-spacing:13.600000pt;}
.ls5d{letter-spacing:14.240000pt;}
.ls50{letter-spacing:14.400000pt;}
.ls4c{letter-spacing:14.880000pt;}
.ls67{letter-spacing:15.520000pt;}
.ls2a{letter-spacing:16.160000pt;}
.ls1a{letter-spacing:16.800000pt;}
.ls1b{letter-spacing:17.440000pt;}
.ls6d{letter-spacing:18.080000pt;}
.ls4e{letter-spacing:18.720000pt;}
.ls5a{letter-spacing:19.360000pt;}
.ls24{letter-spacing:20.000000pt;}
.ls4a{letter-spacing:20.640000pt;}
.ls77{letter-spacing:21.280000pt;}
.ls90{letter-spacing:21.898667pt;}
.ls4d{letter-spacing:21.920000pt;}
.ls68{letter-spacing:22.560000pt;}
.ls57{letter-spacing:23.200000pt;}
.ls8b{letter-spacing:23.840000pt;}
.ls66{letter-spacing:24.480000pt;}
.ls53{letter-spacing:25.120000pt;}
.ls75{letter-spacing:25.760000pt;}
.ls5c{letter-spacing:26.400000pt;}
.ls40{letter-spacing:27.040000pt;}
.ls27{letter-spacing:27.680000pt;}
.ls59{letter-spacing:27.840000pt;}
.ls22{letter-spacing:28.320000pt;}
.ls85{letter-spacing:28.480000pt;}
.ls3a{letter-spacing:28.960000pt;}
.ls3d{letter-spacing:29.600000pt;}
.ls83{letter-spacing:30.240000pt;}
.ls81{letter-spacing:30.858667pt;}
.ls7a{letter-spacing:30.880000pt;}
.ls49{letter-spacing:31.520000pt;}
.ls48{letter-spacing:31.680000pt;}
.ls6a{letter-spacing:32.160000pt;}
.ls84{letter-spacing:32.800000pt;}
.ls52{letter-spacing:33.440000pt;}
.ls5f{letter-spacing:34.080000pt;}
.ls42{letter-spacing:34.720000pt;}
.ls74{letter-spacing:35.360000pt;}
.ls71{letter-spacing:36.000000pt;}
.ls8c{letter-spacing:36.618667pt;}
.ls97{letter-spacing:37.280000pt;}
.ls1e{letter-spacing:37.920000pt;}
.ls56{letter-spacing:38.560000pt;}
.ls9e{letter-spacing:39.200000pt;}
.ls82{letter-spacing:39.840000pt;}
.ls9f{letter-spacing:40.272640pt;}
.ls95{letter-spacing:40.480000pt;}
.ls3c{letter-spacing:41.120000pt;}
.ls46{letter-spacing:41.280000pt;}
.ls8d{letter-spacing:42.400000pt;}
.ls9b{letter-spacing:43.040000pt;}
.ls63{letter-spacing:43.680000pt;}
.ls6b{letter-spacing:44.320000pt;}
.ls64{letter-spacing:44.960000pt;}
.lsa0{letter-spacing:45.600000pt;}
.ls25{letter-spacing:45.760000pt;}
.ls91{letter-spacing:46.240000pt;}
.ls7e{letter-spacing:47.680000pt;}
.ls20{letter-spacing:48.800000pt;}
.ls58{letter-spacing:49.440000pt;}
.ls60{letter-spacing:50.240000pt;}
.ls86{letter-spacing:52.000000pt;}
.ls8e{letter-spacing:52.640000pt;}
.ls5b{letter-spacing:53.920000pt;}
.ls98{letter-spacing:56.480000pt;}
.ls41{letter-spacing:57.120000pt;}
.lsa1{letter-spacing:58.400000pt;}
.ls65{letter-spacing:59.200000pt;}
.ls80{letter-spacing:61.600000pt;}
.ls55{letter-spacing:62.880000pt;}
.ls5e{letter-spacing:64.960000pt;}
.ls6f{letter-spacing:65.440000pt;}
.ls7f{letter-spacing:66.240000pt;}
.ls62{letter-spacing:67.978667pt;}
.ls76{letter-spacing:68.160000pt;}
.ls6e{letter-spacing:68.640000pt;}
.ls96{letter-spacing:69.920000pt;}
.lsa6{letter-spacing:71.840000pt;}
.ls78{letter-spacing:76.960000pt;}
.ls4b{letter-spacing:98.080000pt;}
.lsa7{letter-spacing:178.080000pt;}
.ls9c{letter-spacing:393.098667pt;}
.ls1{letter-spacing:536.000000pt;}
.ws10{word-spacing:-55.992837pt;}
.ws0{word-spacing:-53.120000pt;}
.ws1c{word-spacing:-53.033600pt;}
.ws1d{word-spacing:-52.897067pt;}
.ws1b{word-spacing:-52.858133pt;}
.ws12{word-spacing:-14.240000pt;}
.ws18{word-spacing:-13.736533pt;}
.ws2{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.552533pt;}
.wsd{word-spacing:-13.545600pt;}
.ws13{word-spacing:-13.511040pt;}
.wsa{word-spacing:-13.510933pt;}
.ws5{word-spacing:-13.463467pt;}
.ws19{word-spacing:-13.416533pt;}
.ws6{word-spacing:-13.374933pt;}
.ws1a{word-spacing:-13.374720pt;}
.ws11{word-spacing:-13.369600pt;}
.ws15{word-spacing:-13.366933pt;}
.ws9{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws4{word-spacing:-13.232640pt;}
.wsb{word-spacing:-13.185067pt;}
.ws8{word-spacing:-13.096533pt;}
.wsc{word-spacing:-12.960000pt;}
.wsf{word-spacing:-12.870933pt;}
.ws17{word-spacing:-12.736000pt;}
.ws14{word-spacing:-12.730667pt;}
.ws16{word-spacing:-12.677333pt;}
.ws1{word-spacing:-11.953280pt;}
.ws7{word-spacing:0.000000pt;}
._44{margin-left:-14.637867pt;}
._48{margin-left:-9.246933pt;}
._11{margin-left:-4.135253pt;}
._9{margin-left:-3.216640pt;}
._8{margin-left:-2.071680pt;}
._5{margin-left:-1.168640pt;}
._0{width:0.956160pt;}
._1{width:2.144427pt;}
._4{width:3.437440pt;}
._e{width:4.470400pt;}
._7{width:5.903360pt;}
._6{width:7.277440pt;}
._d{width:8.977280pt;}
._c{width:10.145920pt;}
._b{width:11.261440pt;}
._a{width:12.217600pt;}
._20{width:14.324267pt;}
._15{width:15.225387pt;}
._14{width:16.160000pt;}
._4f{width:17.051520pt;}
._12{width:17.954560pt;}
._13{width:18.866773pt;}
._3e{width:19.804587pt;}
._1e{width:20.716800pt;}
._10{width:21.627947pt;}
._f{width:22.591787pt;}
._22{width:24.222720pt;}
._23{width:25.716480pt;}
._27{width:27.040000pt;}
._1d{width:28.271360pt;}
._1c{width:29.257600pt;}
._2a{width:30.280747pt;}
._25{width:31.606400pt;}
._24{width:32.668800pt;}
._26{width:33.789227pt;}
._21{width:35.377920pt;}
._30{width:36.652800pt;}
._18{width:38.033920pt;}
._17{width:38.993067pt;}
._4c{width:39.890133pt;}
._16{width:41.067520pt;}
._2d{width:42.496000pt;}
._2f{width:43.516160pt;}
._33{width:44.966187pt;}
._1f{width:45.895680pt;}
._3f{width:47.352960pt;}
._1b{width:48.339200pt;}
._1a{width:49.454720pt;}
._3c{width:50.504320pt;}
._51{width:52.641920pt;}
._3a{width:53.546880pt;}
._29{width:54.501120pt;}
._19{width:56.307200pt;}
._2c{width:57.531307pt;}
._56{width:58.509653pt;}
._45{width:59.443840pt;}
._50{width:60.424320pt;}
._31{width:61.566080pt;}
._32{width:63.646507pt;}
._53{width:64.547840pt;}
._3b{width:65.496960pt;}
._54{width:66.506240pt;}
._2b{width:67.400747pt;}
._3d{width:69.271253pt;}
._52{width:70.926507pt;}
._34{width:72.635307pt;}
._28{width:73.783680pt;}
._4e{width:75.005440pt;}
._49{width:76.971947pt;}
._60{width:78.240000pt;}
._46{width:79.180160pt;}
._43{width:80.317440pt;}
._36{width:81.296213pt;}
._4b{width:82.607147pt;}
._37{width:83.608960pt;}
._4d{width:87.063680pt;}
._5a{width:88.757120pt;}
._47{width:90.463147pt;}
._42{width:93.567787pt;}
._41{width:94.994987pt;}
._2e{width:98.165760pt;}
._39{width:104.062080pt;}
._38{width:105.018240pt;}
._55{width:106.399360pt;}
._57{width:112.667520pt;}
._35{width:122.866560pt;}
._58{width:127.800320pt;}
._59{width:128.878080pt;}
._5f{width:207.657600pt;}
._5e{width:208.803200pt;}
._5d{width:214.508160pt;}
._4a{width:320.956587pt;}
._40{width:327.224960pt;}
._5c{width:409.448960pt;}
._5b{width:410.352000pt;}
._61{width:429.900160pt;}
._62{width:754.858667pt;}
._3{width:930.614827pt;}
._2{width:1163.345707pt;}
.fs3{font-size:34.560000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:55.992837pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y7e{bottom:78.560000pt;}
.y137{bottom:80.480000pt;}
.y3e{bottom:81.920000pt;}
.yea{bottom:82.720000pt;}
.y99{bottom:89.440000pt;}
.y80{bottom:90.720000pt;}
.yac{bottom:91.680000pt;}
.y142{bottom:93.600000pt;}
.y7d{bottom:93.920000pt;}
.y136{bottom:95.840000pt;}
.y3d{bottom:97.280000pt;}
.ye9{bottom:98.080000pt;}
.y98{bottom:104.800000pt;}
.yab{bottom:107.040000pt;}
.y7f{bottom:108.320000pt;}
.y7c{bottom:109.280000pt;}
.y135{bottom:111.200000pt;}
.y3c{bottom:112.640000pt;}
.ye8{bottom:113.440000pt;}
.y97{bottom:120.192000pt;}
.yaa{bottom:122.432000pt;}
.y141{bottom:124.352000pt;}
.y7b{bottom:124.512000pt;}
.y134{bottom:126.592000pt;}
.y3b{bottom:128.032000pt;}
.ye7{bottom:128.832000pt;}
.y96{bottom:135.386667pt;}
.ya9{bottom:137.626667pt;}
.y7a{bottom:139.866667pt;}
.y140{bottom:140.986667pt;}
.y133{bottom:141.946667pt;}
.y3a{bottom:143.386667pt;}
.ye6{bottom:144.186667pt;}
.y95{bottom:150.746667pt;}
.ya8{bottom:152.986667pt;}
.y79{bottom:155.226667pt;}
.y132{bottom:157.146667pt;}
.y13f{bottom:158.426667pt;}
.y39{bottom:158.746667pt;}
.ye5{bottom:159.386667pt;}
.y94{bottom:166.106667pt;}
.ya7{bottom:168.346667pt;}
.y78{bottom:170.586667pt;}
.y131{bottom:172.506667pt;}
.y38{bottom:173.946667pt;}
.ye4{bottom:174.746667pt;}
.y93{bottom:181.466667pt;}
.ya6{bottom:183.706667pt;}
.y77{bottom:185.946667pt;}
.y130{bottom:187.866667pt;}
.y37{bottom:189.306667pt;}
.ye3{bottom:190.106667pt;}
.y92{bottom:196.826667pt;}
.ya5{bottom:199.066667pt;}
.y76{bottom:201.306667pt;}
.y12f{bottom:203.226667pt;}
.y36{bottom:204.666667pt;}
.ye2{bottom:205.466667pt;}
.y91{bottom:212.186667pt;}
.yec{bottom:213.466667pt;}
.ya4{bottom:214.266667pt;}
.y75{bottom:216.506667pt;}
.y12e{bottom:218.586667pt;}
.y35{bottom:220.026667pt;}
.ye1{bottom:220.826667pt;}
.y90{bottom:227.386667pt;}
.ya3{bottom:229.626667pt;}
.yeb{bottom:230.906667pt;}
.y74{bottom:231.866667pt;}
.y12d{bottom:233.946667pt;}
.y34{bottom:235.386667pt;}
.ye0{bottom:236.026667pt;}
.y8f{bottom:242.746667pt;}
.y139{bottom:244.026667pt;}
.ya2{bottom:244.986667pt;}
.y73{bottom:247.226667pt;}
.y12c{bottom:249.146667pt;}
.y33{bottom:250.746667pt;}
.ydf{bottom:251.386667pt;}
.y13e{bottom:252.666667pt;}
.y8e{bottom:258.106667pt;}
.ya1{bottom:260.346667pt;}
.y138{bottom:261.626667pt;}
.y72{bottom:262.586667pt;}
.y12b{bottom:264.506667pt;}
.y32{bottom:265.946667pt;}
.yde{bottom:266.746667pt;}
.y13d{bottom:270.266667pt;}
.y8d{bottom:273.466667pt;}
.ya0{bottom:275.706667pt;}
.y71{bottom:277.946667pt;}
.y12a{bottom:279.866667pt;}
.y31{bottom:281.306667pt;}
.ydd{bottom:282.106667pt;}
.y13c{bottom:287.866667pt;}
.y8c{bottom:288.826667pt;}
.y9f{bottom:291.066667pt;}
.y70{bottom:293.306667pt;}
.y129{bottom:295.226667pt;}
.y30{bottom:296.666667pt;}
.ydc{bottom:297.466667pt;}
.y8b{bottom:304.186667pt;}
.y13b{bottom:305.466667pt;}
.y9e{bottom:306.266667pt;}
.y6f{bottom:308.506667pt;}
.y128{bottom:310.586667pt;}
.y2f{bottom:312.026667pt;}
.ydb{bottom:312.826667pt;}
.y8a{bottom:319.386667pt;}
.y9d{bottom:321.626667pt;}
.y13a{bottom:322.906667pt;}
.y6e{bottom:323.866667pt;}
.y127{bottom:325.786667pt;}
.y2e{bottom:327.386667pt;}
.yda{bottom:328.026667pt;}
.y89{bottom:334.746667pt;}
.y9c{bottom:336.986667pt;}
.y6d{bottom:339.226667pt;}
.y126{bottom:341.146667pt;}
.y2d{bottom:342.746667pt;}
.yd9{bottom:343.386667pt;}
.y88{bottom:350.146667pt;}
.y9b{bottom:352.386667pt;}
.y6c{bottom:354.626667pt;}
.y125{bottom:356.546667pt;}
.y2c{bottom:357.986667pt;}
.yd8{bottom:360.066667pt;}
.y87{bottom:365.506667pt;}
.yf0{bottom:367.746667pt;}
.y9a{bottom:369.026667pt;}
.y6b{bottom:369.986667pt;}
.y124{bottom:371.906667pt;}
.y2b{bottom:373.346667pt;}
.yd7{bottom:376.386667pt;}
.y86{bottom:380.866667pt;}
.yef{bottom:383.106667pt;}
.y6a{bottom:385.186667pt;}
.y123{bottom:387.266667pt;}
.y2a{bottom:388.706667pt;}
.yd6{bottom:391.746667pt;}
.y85{bottom:396.066667pt;}
.yee{bottom:398.306667pt;}
.y69{bottom:400.546667pt;}
.y122{bottom:402.626667pt;}
.y29{bottom:404.066667pt;}
.yd5{bottom:408.226667pt;}
.y84{bottom:411.426667pt;}
.yfc{bottom:413.666667pt;}
.yed{bottom:414.946667pt;}
.y68{bottom:415.906667pt;}
.y121{bottom:417.826667pt;}
.y28{bottom:419.426667pt;}
.yd4{bottom:424.546667pt;}
.y83{bottom:426.786667pt;}
.yfb{bottom:429.026667pt;}
.y67{bottom:431.266667pt;}
.y120{bottom:434.466667pt;}
.y27{bottom:434.626667pt;}
.yd3{bottom:439.906667pt;}
.y11a{bottom:442.146667pt;}
.y82{bottom:443.426667pt;}
.yfa{bottom:444.386667pt;}
.y66{bottom:446.626667pt;}
.y26{bottom:449.986667pt;}
.y11f{bottom:450.786667pt;}
.yd2{bottom:455.266667pt;}
.y119{bottom:457.506667pt;}
.yf9{bottom:459.746667pt;}
.y81{bottom:461.026667pt;}
.y65{bottom:461.986667pt;}
.y25{bottom:465.346667pt;}
.y11e{bottom:466.146667pt;}
.yd1{bottom:470.626667pt;}
.y118{bottom:472.866667pt;}
.yf8{bottom:475.106667pt;}
.y64{bottom:477.186667pt;}
.y24{bottom:480.706667pt;}
.y11d{bottom:482.786667pt;}
.yd0{bottom:485.826667pt;}
.y117{bottom:488.066667pt;}
.yf7{bottom:490.306667pt;}
.y63{bottom:492.546667pt;}
.y23{bottom:496.066667pt;}
.y11c{bottom:500.226667pt;}
.ycf{bottom:501.186667pt;}
.y116{bottom:503.426667pt;}
.yf6{bottom:505.666667pt;}
.y62{bottom:507.906667pt;}
.y22{bottom:511.426667pt;}
.yce{bottom:517.826667pt;}
.y115{bottom:518.786667pt;}
.yf5{bottom:521.026667pt;}
.y61{bottom:523.266667pt;}
.y21{bottom:526.626667pt;}
.ycd{bottom:534.146667pt;}
.yf4{bottom:536.386667pt;}
.y60{bottom:538.626667pt;}
.y20{bottom:541.986667pt;}
.ycc{bottom:549.506667pt;}
.yf3{bottom:551.746667pt;}
.y5f{bottom:553.986667pt;}
.y1f{bottom:557.346667pt;}
.y114{bottom:564.866667pt;}
.ycb{bottom:566.146667pt;}
.yf2{bottom:566.946667pt;}
.y5e{bottom:569.213333pt;}
.y1e{bottom:572.733333pt;}
.y113{bottom:580.093333pt;}
.yca{bottom:582.333333pt;}
.y11b{bottom:583.613333pt;}
.y5d{bottom:584.573333pt;}
.y1d{bottom:588.093333pt;}
.y112{bottom:595.453333pt;}
.yc9{bottom:597.693333pt;}
.y5c{bottom:599.933333pt;}
.y1c{bottom:603.453333pt;}
.y111{bottom:610.813333pt;}
.yc8{bottom:613.053333pt;}
.y5b{bottom:615.293333pt;}
.y1b{bottom:618.653333pt;}
.y110{bottom:626.173333pt;}
.yc7{bottom:628.413333pt;}
.y5a{bottom:630.653333pt;}
.y1a{bottom:634.013333pt;}
.y10f{bottom:641.533333pt;}
.yc6{bottom:643.773333pt;}
.y59{bottom:645.853333pt;}
.y19{bottom:649.373333pt;}
.y10e{bottom:656.733333pt;}
.yc5{bottom:658.973333pt;}
.y58{bottom:661.213333pt;}
.y18{bottom:664.733333pt;}
.y10d{bottom:672.093333pt;}
.yc4{bottom:674.333333pt;}
.y57{bottom:676.573333pt;}
.y17{bottom:680.093333pt;}
.y10c{bottom:687.453333pt;}
.yc3{bottom:689.693333pt;}
.y56{bottom:691.933333pt;}
.y16{bottom:695.293333pt;}
.y10b{bottom:702.813333pt;}
.yc2{bottom:705.053333pt;}
.y55{bottom:707.293333pt;}
.y15{bottom:710.653333pt;}
.y10a{bottom:718.173333pt;}
.yc1{bottom:720.413333pt;}
.y54{bottom:722.653333pt;}
.y14{bottom:726.013333pt;}
.y109{bottom:733.533333pt;}
.yc0{bottom:735.773333pt;}
.y53{bottom:737.853333pt;}
.y13{bottom:741.373333pt;}
.y108{bottom:748.733333pt;}
.ybf{bottom:750.973333pt;}
.y52{bottom:753.213333pt;}
.y12{bottom:756.733333pt;}
.y107{bottom:764.093333pt;}
.ybe{bottom:766.333333pt;}
.y51{bottom:768.573333pt;}
.y11{bottom:772.093333pt;}
.y106{bottom:779.453333pt;}
.ybd{bottom:781.693333pt;}
.y50{bottom:783.933333pt;}
.y10{bottom:787.293333pt;}
.y151{bottom:788.093333pt;}
.y105{bottom:794.853333pt;}
.ybc{bottom:797.093333pt;}
.y4f{bottom:799.333333pt;}
.yf{bottom:802.693333pt;}
.y150{bottom:803.493333pt;}
.y104{bottom:810.213333pt;}
.ybb{bottom:812.453333pt;}
.y4e{bottom:814.693333pt;}
.ye{bottom:818.053333pt;}
.y14f{bottom:818.853333pt;}
.y103{bottom:825.573333pt;}
.yba{bottom:827.653333pt;}
.y4d{bottom:829.893333pt;}
.y14e{bottom:834.213333pt;}
.y102{bottom:840.773333pt;}
.yb9{bottom:843.013333pt;}
.yf1{bottom:844.293333pt;}
.y4c{bottom:845.253333pt;}
.yd{bottom:848.773333pt;}
.y14d{bottom:849.413333pt;}
.y101{bottom:856.133333pt;}
.yb8{bottom:858.373333pt;}
.y4b{bottom:860.613333pt;}
.yc{bottom:864.133333pt;}
.y14c{bottom:864.773333pt;}
.y100{bottom:871.493333pt;}
.yb7{bottom:873.733333pt;}
.y4a{bottom:875.973333pt;}
.yb{bottom:879.333333pt;}
.y14b{bottom:880.133333pt;}
.yff{bottom:886.853333pt;}
.yb6{bottom:889.093333pt;}
.y49{bottom:891.333333pt;}
.ya{bottom:894.693333pt;}
.y14a{bottom:895.493333pt;}
.yfe{bottom:903.493333pt;}
.yb5{bottom:904.453333pt;}
.y48{bottom:906.693333pt;}
.y9{bottom:910.053333pt;}
.y149{bottom:910.853333pt;}
.yb4{bottom:919.653333pt;}
.yfd{bottom:920.933333pt;}
.y47{bottom:921.893333pt;}
.y8{bottom:925.413333pt;}
.y148{bottom:926.213333pt;}
.yb3{bottom:935.013333pt;}
.y46{bottom:937.253333pt;}
.y7{bottom:940.773333pt;}
.y147{bottom:942.693333pt;}
.yb2{bottom:950.373333pt;}
.y45{bottom:952.613333pt;}
.y6{bottom:956.133333pt;}
.y146{bottom:960.293333pt;}
.yb1{bottom:965.733333pt;}
.y44{bottom:967.973333pt;}
.y145{bottom:977.893333pt;}
.yb0{bottom:981.093333pt;}
.y43{bottom:983.333333pt;}
.y5{bottom:986.693333pt;}
.y144{bottom:995.493333pt;}
.yaf{bottom:996.453333pt;}
.y42{bottom:998.533333pt;}
.y4{bottom:1002.053333pt;}
.yae{bottom:1011.653333pt;}
.y143{bottom:1012.933333pt;}
.y41{bottom:1013.893333pt;}
.y3{bottom:1017.440000pt;}
.yad{bottom:1028.320000pt;}
.y40{bottom:1029.280000pt;}
.y2{bottom:1035.360000pt;}
.y3f{bottom:1044.640000pt;}
.y1{bottom:1062.720000pt;}
.h9{height:40.682295pt;}
.h8{height:44.327188pt;}
.h7{height:44.638438pt;}
.hb{height:46.246563pt;}
.h5{height:52.108438pt;}
.h6{height:52.134375pt;}
.ha{height:52.478750pt;}
.h2{height:52.834688pt;}
.h4{height:53.535000pt;}
.hc{height:54.598989pt;}
.h3{height:94.218750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.591988pt;}
.x2c{left:99.071988pt;}
.x4{left:105.311988pt;}
.x14{left:120.991988pt;}
.x43{left:128.031988pt;}
.xb{left:134.906655pt;}
.x18{left:136.826655pt;}
.x34{left:138.266655pt;}
.x3d{left:140.346655pt;}
.x35{left:141.626655pt;}
.x44{left:148.826655pt;}
.x1a{left:164.346655pt;}
.x3c{left:171.866655pt;}
.x37{left:178.586655pt;}
.x2d{left:180.186655pt;}
.x38{left:181.946655pt;}
.x39{left:191.866655pt;}
.x2e{left:195.866655pt;}
.x3a{left:198.906655pt;}
.x3e{left:208.346655pt;}
.x36{left:222.106655pt;}
.x2f{left:237.826655pt;}
.x3f{left:241.826655pt;}
.x2{left:244.706655pt;}
.x40{left:246.946655pt;}
.x1b{left:255.106655pt;}
.x13{left:256.546655pt;}
.x12{left:282.946655pt;}
.x45{left:292.066655pt;}
.x1c{left:296.866655pt;}
.x46{left:297.986655pt;}
.x3b{left:302.786655pt;}
.x16{left:309.666655pt;}
.x5{left:330.466655pt;}
.x33{left:354.146655pt;}
.xc{left:355.746655pt;}
.x41{left:359.266655pt;}
.x47{left:375.426655pt;}
.x42{left:377.986655pt;}
.x9{left:380.706655pt;}
.x17{left:387.426655pt;}
.x15{left:406.493322pt;}
.x3{left:410.173322pt;}
.x19{left:432.893322pt;}
.xf{left:436.413322pt;}
.x30{left:472.573322pt;}
.x10{left:478.173322pt;}
.x22{left:485.053322pt;}
.x26{left:486.333322pt;}
.x2a{left:511.933322pt;}
.x8{left:522.653322pt;}
.xe{left:524.093322pt;}
.x1d{left:530.493322pt;}
.xd{left:536.413322pt;}
.xa{left:539.613322pt;}
.x23{left:542.813322pt;}
.x27{left:544.253322pt;}
.x24{left:546.653322pt;}
.x28{left:549.213322pt;}
.x31{left:555.333322pt;}
.x6{left:560.453322pt;}
.x2b{left:571.013322pt;}
.x1e{left:589.573322pt;}
.x32{left:597.733322pt;}
.x7{left:602.693322pt;}
.x25{left:607.973322pt;}
.x29{left:610.693322pt;}
.x1f{left:617.413322pt;}
.x20{left:620.133322pt;}
.x21{left:662.053322pt;}
.x11{left:699.333322pt;}
}




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