
    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_64e972214a1abd49e97be5c6.woff')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_71f08243c1ac3bfa90d311b9.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_cd23f14643ebc3e79bfcc981.woff')format("woff");}.ff3{font-family:ff3;line-height:1.082031;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_28d32401bea5499b969f2199.woff')format("woff");}.ff4{font-family:ff4;line-height:1.084961;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_8f4b539eb59d9ecda853c8a2.woff')format("woff");}.ff5{font-family:ff5;line-height:1.078613;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_6f50602688dccbd39911d562.woff')format("woff");}.ff6{font-family:ff6;line-height:1.078613;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_adbf3464a9f1342118e77394.woff')format("woff");}.ff7{font-family:ff7;line-height:0.899414;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_d2a2faae20ee22787cf8cbb6.woff')format("woff");}.ff8{font-family:ff8;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_4e09dc3ba6aa37b8363c8f85.woff')format("woff");}.ff9{font-family:ff9;line-height:1.084961;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_d96d09c1326e1d5754df3b46.woff')format("woff");}.ffa{font-family:ffa;line-height:0.899414;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_6d2f7c9ea6b4ab49ed28221d.woff')format("woff");}.ffb{font-family:ffb;line-height:0.752441;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;}
.v2{vertical-align:27.360000px;}
.v1{vertical-align:30.240000px;}
.ls28{letter-spacing:-2.232000px;}
.ls15{letter-spacing:-1.008000px;}
.ls4b{letter-spacing:-0.936000px;}
.ls82{letter-spacing:-0.864000px;}
.ls50{letter-spacing:-0.648000px;}
.ls2d{letter-spacing:-0.576000px;}
.ls8f{letter-spacing:-0.504000px;}
.ls7e{letter-spacing:-0.432000px;}
.lsf{letter-spacing:-0.340800px;}
.ls47{letter-spacing:-0.300000px;}
.ls3{letter-spacing:-0.288000px;}
.ls53{letter-spacing:-0.269400px;}
.ls16{letter-spacing:-0.216000px;}
.ls36{letter-spacing:-0.166800px;}
.ls14{letter-spacing:-0.144000px;}
.ls89{letter-spacing:-0.105600px;}
.ls11{letter-spacing:-0.072000px;}
.ls66{letter-spacing:-0.012960px;}
.ls8c{letter-spacing:-0.004320px;}
.ls1d{letter-spacing:-0.000003px;}
.ls1{letter-spacing:0.000000px;}
.ls42{letter-spacing:0.000001px;}
.ls45{letter-spacing:0.015840px;}
.ls3e{letter-spacing:0.036000px;}
.ls8e{letter-spacing:0.048000px;}
.ls67{letter-spacing:0.061200px;}
.ls52{letter-spacing:0.063600px;}
.ls1c{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.080400px;}
.ls0{letter-spacing:0.088560px;}
.ls59{letter-spacing:0.107400px;}
.ls80{letter-spacing:0.120000px;}
.ls4{letter-spacing:0.144000px;}
.ls4a{letter-spacing:0.172080px;}
.ls24{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.216000px;}
.ls48{letter-spacing:0.259800px;}
.ls88{letter-spacing:0.259920px;}
.ls41{letter-spacing:0.264000px;}
.ls3d{letter-spacing:0.265800px;}
.ls5f{letter-spacing:0.269400px;}
.ls8{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.298800px;}
.ls68{letter-spacing:0.324000px;}
.ls3c{letter-spacing:0.360000px;}
.ls38{letter-spacing:0.396000px;}
.ls13{letter-spacing:0.432000px;}
.ls51{letter-spacing:0.450600px;}
.ls30{letter-spacing:0.468000px;}
.ls27{letter-spacing:0.487440px;}
.ls7f{letter-spacing:0.504000px;}
.ls46{letter-spacing:0.590400px;}
.ls7{letter-spacing:0.648000px;}
.ls65{letter-spacing:0.774000px;}
.ls64{letter-spacing:0.786000px;}
.ls10{letter-spacing:0.792000px;}
.ls54{letter-spacing:0.864000px;}
.ls2e{letter-spacing:0.882000px;}
.lse{letter-spacing:0.900000px;}
.ls9{letter-spacing:0.936000px;}
.ls12{letter-spacing:1.008000px;}
.ls5a{letter-spacing:1.079280px;}
.ls35{letter-spacing:1.207440px;}
.ls29{letter-spacing:1.368000px;}
.ls57{letter-spacing:1.548000px;}
.ls4e{letter-spacing:1.927440px;}
.lsb{letter-spacing:2.088000px;}
.ls4f{letter-spacing:2.647440px;}
.lsd{letter-spacing:2.808000px;}
.ls3b{letter-spacing:3.367440px;}
.ls2b{letter-spacing:3.528000px;}
.ls2f{letter-spacing:4.087440px;}
.ls83{letter-spacing:4.248000px;}
.ls3a{letter-spacing:4.807440px;}
.ls23{letter-spacing:4.968000px;}
.ls5c{letter-spacing:5.527440px;}
.ls25{letter-spacing:5.688000px;}
.ls21{letter-spacing:5.976000px;}
.ls5d{letter-spacing:6.247440px;}
.ls32{letter-spacing:6.408000px;}
.ls84{letter-spacing:6.696000px;}
.ls6a{letter-spacing:6.839280px;}
.ls60{letter-spacing:6.967440px;}
.ls20{letter-spacing:7.128000px;}
.ls7d{letter-spacing:7.416000px;}
.ls6c{letter-spacing:7.687440px;}
.ls19{letter-spacing:7.848000px;}
.ls81{letter-spacing:8.407440px;}
.ls1e{letter-spacing:8.568000px;}
.ls40{letter-spacing:9.288000px;}
.ls90{letter-spacing:9.468000px;}
.ls33{letter-spacing:9.847440px;}
.ls1a{letter-spacing:10.008000px;}
.ls34{letter-spacing:10.567440px;}
.ls2c{letter-spacing:10.728000px;}
.ls8a{letter-spacing:10.740000px;}
.ls69{letter-spacing:11.448000px;}
.ls91{letter-spacing:11.940000px;}
.lsa{letter-spacing:12.168000px;}
.ls58{letter-spacing:12.456000px;}
.ls26{letter-spacing:12.727440px;}
.ls39{letter-spacing:13.608000px;}
.ls6d{letter-spacing:13.896000px;}
.ls49{letter-spacing:14.328000px;}
.ls17{letter-spacing:15.048000px;}
.ls62{letter-spacing:15.264000px;}
.ls8d{letter-spacing:15.336000px;}
.ls43{letter-spacing:15.607440px;}
.ls1f{letter-spacing:15.768000px;}
.ls5e{letter-spacing:17.047440px;}
.ls18{letter-spacing:17.208000px;}
.ls55{letter-spacing:17.928000px;}
.ls1b{letter-spacing:18.072000px;}
.ls77{letter-spacing:18.144000px;}
.ls6f{letter-spacing:18.216000px;}
.ls74{letter-spacing:18.288000px;}
.ls4d{letter-spacing:18.487440px;}
.ls56{letter-spacing:18.576000px;}
.ls79{letter-spacing:18.648000px;}
.ls72{letter-spacing:18.864000px;}
.ls6e{letter-spacing:19.008000px;}
.ls87{letter-spacing:19.368000px;}
.ls44{letter-spacing:22.910400px;}
.ls4c{letter-spacing:23.868000px;}
.ls22{letter-spacing:24.408000px;}
.ls75{letter-spacing:25.488000px;}
.ls31{letter-spacing:25.848000px;}
.ls63{letter-spacing:26.064000px;}
.ls70{letter-spacing:26.136000px;}
.ls86{letter-spacing:27.216000px;}
.ls37{letter-spacing:27.648000px;}
.ls61{letter-spacing:28.008000px;}
.ls3f{letter-spacing:28.848000px;}
.ls8b{letter-spacing:30.888000px;}
.ls85{letter-spacing:32.400000px;}
.lsc{letter-spacing:33.048000px;}
.ls2a{letter-spacing:33.768000px;}
.ls5b{letter-spacing:42.210720px;}
.ls7a{letter-spacing:46.728000px;}
.ls7b{letter-spacing:51.768000px;}
.ls73{letter-spacing:52.704000px;}
.ls71{letter-spacing:52.776000px;}
.ls76{letter-spacing:52.848000px;}
.ls7c{letter-spacing:53.208000px;}
.ls78{letter-spacing:53.424000px;}
.ls6b{letter-spacing:127.979280px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-60.058800px;}
.ws1{word-spacing:-23.671440px;}
.wsb{word-spacing:-21.024000px;}
.ws0{word-spacing:-20.807280px;}
.ws3e{word-spacing:-20.592000px;}
.ws54{word-spacing:-20.448000px;}
.ws29{word-spacing:-20.376000px;}
.ws19{word-spacing:-20.304000px;}
.ws4f{word-spacing:-20.232001px;}
.ws2{word-spacing:-20.232000px;}
.ws37{word-spacing:-20.231997px;}
.ws28{word-spacing:-20.160000px;}
.ws3b{word-spacing:-20.088000px;}
.ws2d{word-spacing:-20.016000px;}
.ws62{word-spacing:-19.944000px;}
.ws66{word-spacing:-19.728000px;}
.ws42{word-spacing:-18.072000px;}
.wsc{word-spacing:-18.000000px;}
.ws17{word-spacing:-17.928000px;}
.ws40{word-spacing:-17.856000px;}
.ws3{word-spacing:-17.784000px;}
.ws2a{word-spacing:-17.712000px;}
.ws32{word-spacing:-17.674560px;}
.ws10{word-spacing:-17.568000px;}
.ws5e{word-spacing:-17.352000px;}
.ws30{word-spacing:-17.208000px;}
.ws58{word-spacing:-17.152560px;}
.ws5d{word-spacing:-17.061960px;}
.ws45{word-spacing:-17.052360px;}
.ws57{word-spacing:-16.899960px;}
.ws5c{word-spacing:-16.853760px;}
.ws41{word-spacing:-16.792560px;}
.ws3c{word-spacing:-16.625760px;}
.ws44{word-spacing:-16.492560px;}
.wsa{word-spacing:-16.451760px;}
.ws4c{word-spacing:-15.211320px;}
.ws3d{word-spacing:-14.760720px;}
.ws4d{word-spacing:-14.491320px;}
.ws18{word-spacing:-11.734560px;}
.ws3a{word-spacing:-10.314720px;}
.ws4e{word-spacing:-8.352000px;}
.ws56{word-spacing:-7.992000px;}
.ws55{word-spacing:-7.848000px;}
.ws59{word-spacing:-4.362480px;}
.ws5a{word-spacing:-1.456560px;}
.ws63{word-spacing:-1.188000px;}
.ws20{word-spacing:-0.720000px;}
.ws12{word-spacing:-0.072000px;}
.ws8{word-spacing:0.000000px;}
.ws1a{word-spacing:0.216000px;}
.ws1d{word-spacing:0.360009px;}
.ws1b{word-spacing:0.432000px;}
.ws3f{word-spacing:0.504000px;}
.ws65{word-spacing:0.540000px;}
.ws1e{word-spacing:0.576000px;}
.ws51{word-spacing:0.648000px;}
.ws52{word-spacing:0.792000px;}
.ws5b{word-spacing:0.835920px;}
.ws35{word-spacing:0.936000px;}
.ws64{word-spacing:1.056000px;}
.ws31{word-spacing:1.080000px;}
.wsd{word-spacing:1.224000px;}
.ws1f{word-spacing:1.296000px;}
.ws13{word-spacing:1.368000px;}
.ws23{word-spacing:1.488000px;}
.ws36{word-spacing:1.512000px;}
.ws2e{word-spacing:7.272000px;}
.ws6{word-spacing:7.452000px;}
.ws2c{word-spacing:7.560000px;}
.ws26{word-spacing:7.632000px;}
.ws2f{word-spacing:7.704000px;}
.ws5f{word-spacing:7.848000px;}
.ws46{word-spacing:7.896000px;}
.ws4a{word-spacing:7.968000px;}
.ws14{word-spacing:7.992000px;}
.ws47{word-spacing:8.028000px;}
.ws34{word-spacing:8.112000px;}
.ws50{word-spacing:8.136000px;}
.ws27{word-spacing:8.172000px;}
.wsf{word-spacing:8.256000px;}
.ws5{word-spacing:8.280000px;}
.ws22{word-spacing:8.280009px;}
.ws2b{word-spacing:8.328000px;}
.ws7{word-spacing:8.352000px;}
.ws4{word-spacing:8.400000px;}
.ws1c{word-spacing:8.424000px;}
.ws25{word-spacing:8.460000px;}
.ws49{word-spacing:8.460009px;}
.ws33{word-spacing:8.472000px;}
.ws16{word-spacing:8.496000px;}
.ws24{word-spacing:8.532000px;}
.ws15{word-spacing:8.544000px;}
.wse{word-spacing:8.568000px;}
.ws21{word-spacing:8.604000px;}
.ws53{word-spacing:8.712000px;}
.ws11{word-spacing:8.748000px;}
.ws39{word-spacing:9.144000px;}
.ws48{word-spacing:9.432000px;}
.ws43{word-spacing:9.576000px;}
.ws38{word-spacing:9.792000px;}
.ws60{word-spacing:14.760000px;}
.ws61{word-spacing:14.976000px;}
.ws4b{word-spacing:35.640000px;}
._29{margin-left:-16.529040px;}
._15{margin-left:-5.751600px;}
._d{margin-left:-4.664880px;}
._c{margin-left:-3.600000px;}
._b{margin-left:-2.376000px;}
._3{margin-left:-1.095120px;}
._0{width:1.135440px;}
._9{width:2.137680px;}
._10{width:3.151680px;}
._13{width:5.040000px;}
._14{width:6.192000px;}
._e{width:7.776000px;}
._f{width:9.432000px;}
._6{width:11.376000px;}
._16{width:12.400560px;}
._17{width:13.476000px;}
._4{width:15.336000px;}
._5{width:16.932000px;}
._a{width:18.420000px;}
._24{width:19.703280px;}
._8{width:21.526800px;}
._7{width:23.400000px;}
._12{width:24.423120px;}
._1a{width:26.040000px;}
._11{width:27.648000px;}
._1d{width:28.800000px;}
._1b{width:30.240000px;}
._1c{width:31.440000px;}
._18{width:32.472000px;}
._19{width:33.957120px;}
._25{width:35.666880px;}
._28{width:37.224000px;}
._21{width:38.808000px;}
._22{width:40.252560px;}
._2b{width:44.629200px;}
._27{width:47.232000px;}
._2a{width:48.932640px;}
._26{width:53.199840px;}
._1e{width:205.854240px;}
._1f{width:219.720480px;}
._20{width:221.158320px;}
._23{width:235.596000px;}
._1{width:387.642000px;}
._2{width:734.268720px;}
.fc3{color:rgb(255,102,0);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:36.000000px;}
.fs4{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y1c1{bottom:15.105000px;}
.y1c5{bottom:15.111000px;}
.y18e{bottom:15.120000px;}
.y1ae{bottom:15.285000px;}
.y18d{bottom:15.300000px;}
.y1c3{bottom:45.345000px;}
.y1bc{bottom:45.360000px;}
.y1c0{bottom:45.390000px;}
.y1c6{bottom:45.525000px;}
.y1be{bottom:45.540000px;}
.y194{bottom:45.570000px;}
.y5{bottom:46.116000px;}
.y2d{bottom:46.656000px;}
.y2c{bottom:63.396000px;}
.y4{bottom:63.936000px;}
.y2b{bottom:80.136000px;}
.y3{bottom:80.676000px;}
.y2{bottom:100.116000px;}
.y2a{bottom:102.636000px;}
.y87{bottom:119.376000px;}
.y4d{bottom:120.276000px;}
.y69{bottom:120.636000px;}
.y26{bottom:122.256000px;}
.y86{bottom:125.316000px;}
.y1e0{bottom:126.036000px;}
.y1d9{bottom:130.356000px;}
.y1c4{bottom:132.525000px;}
.y85{bottom:135.756000px;}
.y13a{bottom:135.936000px;}
.ya6{bottom:136.116000px;}
.yc6{bottom:136.296000px;}
.ye5{bottom:142.056000px;}
.yc5{bottom:142.236000px;}
.y1f1{bottom:148.536000px;}
.y4c{bottom:150.870000px;}
.y68{bottom:151.050000px;}
.y1b6{bottom:151.230000px;}
.y25{bottom:152.310000px;}
.yc4{bottom:152.670000px;}
.ye4{bottom:152.850000px;}
.y166{bottom:153.030000px;}
.ya5{bottom:153.210000px;}
.y165{bottom:158.970000px;}
.ya4{bottom:159.150000px;}
.y1d8{bottom:160.410000px;}
.y164{bottom:169.410000px;}
.ya3{bottom:169.590000px;}
.ye3{bottom:169.770000px;}
.y122{bottom:170.130000px;}
.ye2{bottom:175.710000px;}
.y121{bottom:176.070000px;}
.y139{bottom:178.950000px;}
.y1f0{bottom:179.130000px;}
.y1e7{bottom:179.670000px;}
.y84{bottom:179.850000px;}
.y17a{bottom:180.390000px;}
.y4b{bottom:181.110000px;}
.y67{bottom:181.470000px;}
.y1cf{bottom:181.830000px;}
.y24{bottom:182.550000px;}
.ye1{bottom:186.150000px;}
.y187{bottom:186.330000px;}
.yff{bottom:186.690000px;}
.y1d7{bottom:191.010000px;}
.yfe{bottom:192.630000px;}
.y1b0{bottom:193.350000px;}
.y1c2{bottom:193.725000px;}
.yfd{bottom:203.430000px;}
.y1af{bottom:203.985000px;}
.y138{bottom:209.010000px;}
.y1ef{bottom:209.370000px;}
.yc3{bottom:209.730000px;}
.y83{bottom:210.450000px;}
.y179{bottom:210.630000px;}
.y4a{bottom:211.350000px;}
.y1b5{bottom:211.530000px;}
.y66{bottom:212.070000px;}
.y23{bottom:212.790000px;}
.yfc{bottom:220.530000px;}
.y1d6{bottom:221.430000px;}
.y19e{bottom:233.310000px;}
.y1ad{bottom:234.945000px;}
.yfb{bottom:237.450000px;}
.y137{bottom:239.430000px;}
.yc2{bottom:240.150000px;}
.y120{bottom:240.330000px;}
.y149{bottom:240.690000px;}
.y82{bottom:240.870000px;}
.y178{bottom:241.050000px;}
.y49{bottom:241.410000px;}
.y1d5{bottom:241.590000px;}
.y10f{bottom:241.770000px;}
.y65{bottom:242.130000px;}
.y186{bottom:242.310000px;}
.y22{bottom:243.030000px;}
.yfa{bottom:254.370000px;}
.y1bf{bottom:255.105000px;}
.y19d{bottom:263.730000px;}
.y136{bottom:269.850000px;}
.y1ee{bottom:270.030000px;}
.yc1{bottom:270.390000px;}
.ye0{bottom:270.930000px;}
.ya2{bottom:271.110000px;}
.y177{bottom:271.290000px;}
.y81{bottom:271.470000px;}
.y48{bottom:271.830000px;}
.y163{bottom:272.010000px;}
.y64{bottom:272.550000px;}
.y1ce{bottom:272.775000px;}
.y21{bottom:273.315000px;}
.y1ac{bottom:281.595000px;}
.yf9{bottom:288.435000px;}
.y19c{bottom:294.195000px;}
.y1ed{bottom:300.135000px;}
.y135{bottom:300.315000px;}
.yc0{bottom:300.675000px;}
.y148{bottom:301.035000px;}
.ydf{bottom:301.215000px;}
.ya1{bottom:301.395000px;}
.y80{bottom:301.575000px;}
.y1b4{bottom:302.115000px;}
.y162{bottom:302.295000px;}
.y47{bottom:302.475000px;}
.y185{bottom:302.835000px;}
.y63{bottom:303.195000px;}
.y20{bottom:303.375000px;}
.yf8{bottom:305.355000px;}
.yf7{bottom:311.295000px;}
.y1ab{bottom:311.655000px;}
.y1bd{bottom:316.335000px;}
.yf6{bottom:321.735000px;}
.y19b{bottom:324.615000px;}
.y134{bottom:330.735000px;}
.ybf{bottom:330.915000px;}
.y1e6{bottom:331.095000px;}
.y147{bottom:331.275000px;}
.yde{bottom:331.455000px;}
.ya0{bottom:331.635000px;}
.y7f{bottom:331.815000px;}
.y156{bottom:332.175000px;}
.y1d4{bottom:332.355000px;}
.y46{bottom:332.535000px;}
.y184{bottom:333.075000px;}
.y62{bottom:333.435000px;}
.y1f{bottom:333.975000px;}
.y1aa{bottom:337.215000px;}
.y19a{bottom:355.035000px;}
.y1ec{bottom:360.795000px;}
.y133{bottom:360.975000px;}
.ybe{bottom:361.155000px;}
.y1df{bottom:361.335000px;}
.y11f{bottom:361.515000px;}
.y9f{bottom:361.695000px;}
.y7e{bottom:362.235000px;}
.y155{bottom:362.415000px;}
.y161{bottom:362.595000px;}
.yf5{bottom:362.775000px;}
.y45{bottom:363.135000px;}
.y183{bottom:363.315000px;}
.y61{bottom:363.495000px;}
.y1e{bottom:364.215000px;}
.y1bb{bottom:377.535000px;}
.y199{bottom:385.455000px;}
.y1eb{bottom:391.215000px;}
.ybd{bottom:391.395000px;}
.y132{bottom:391.575000px;}
.y146{bottom:391.755000px;}
.ydd{bottom:391.935000px;}
.y9e{bottom:392.115000px;}
.y154{bottom:392.475000px;}
.y7d{bottom:392.655000px;}
.y1d3{bottom:392.835000px;}
.y44{bottom:393.195000px;}
.yf3{bottom:393.375000px;}
.y60{bottom:393.915000px;}
.y1cd{bottom:394.095000px;}
.y1d{bottom:394.455000px;}
.yf4{bottom:400.935000px;}
.y198{bottom:415.875000px;}
.ybc{bottom:421.635000px;}
.y131{bottom:421.815000px;}
.ydc{bottom:421.995000px;}
.y11e{bottom:422.355000px;}
.y9d{bottom:422.535000px;}
.y176{bottom:422.715000px;}
.y153{bottom:422.895000px;}
.y1a9{bottom:423.075000px;}
.y7c{bottom:423.255000px;}
.y160{bottom:423.435000px;}
.y10e{bottom:423.615000px;}
.y43{bottom:423.795000px;}
.y5f{bottom:424.155000px;}
.y1cc{bottom:424.335000px;}
.y1c{bottom:424.695000px;}
.y197{bottom:446.475000px;}
.ybb{bottom:451.695000px;}
.y130{bottom:451.875000px;}
.y1ea{bottom:452.235000px;}
.y145{bottom:452.415000px;}
.ydb{bottom:452.595000px;}
.y175{bottom:452.775000px;}
.y9c{bottom:452.955000px;}
.y1a8{bottom:453.135000px;}
.y152{bottom:453.315000px;}
.y7b{bottom:453.495000px;}
.y10c{bottom:453.675000px;}
.y42{bottom:453.855000px;}
.yf2{bottom:454.035000px;}
.y182{bottom:454.215000px;}
.y5e{bottom:454.395000px;}
.y1cb{bottom:454.575000px;}
.y1b{bottom:454.755000px;}
.y10d{bottom:461.235000px;}
.y196{bottom:476.895000px;}
.y144{bottom:480.135000px;}
.yba{bottom:482.295000px;}
.y12f{bottom:482.475000px;}
.yda{bottom:482.655000px;}
.y11d{bottom:483.195000px;}
.y174{bottom:483.375000px;}
.y7a{bottom:483.555000px;}
.y151{bottom:483.735000px;}
.y15f{bottom:483.915000px;}
.y10b{bottom:484.095000px;}
.y1ba{bottom:484.275000px;}
.y41{bottom:484.455000px;}
.y5d{bottom:484.635000px;}
.y181{bottom:484.815000px;}
.y1a{bottom:484.995000px;}
.y143{bottom:505.335000px;}
.y195{bottom:507.495000px;}
.yb9{bottom:512.535000px;}
.yd9{bottom:512.895000px;}
.y1e5{bottom:513.075000px;}
.y11c{bottom:513.255000px;}
.y173{bottom:513.435000px;}
.y9b{bottom:513.795000px;}
.y79{bottom:513.975000px;}
.y150{bottom:514.155000px;}
.y1b3{bottom:514.335000px;}
.y1b9{bottom:514.515000px;}
.y40{bottom:514.695000px;}
.y180{bottom:514.875000px;}
.yf1{bottom:515.055000px;}
.y19{bottom:515.235000px;}
.y193{bottom:523.155000px;}
.y142{bottom:530.535000px;}
.yb8{bottom:542.595000px;}
.yd8{bottom:543.135000px;}
.y1de{bottom:543.315000px;}
.y1e4{bottom:543.495000px;}
.y11b{bottom:543.675000px;}
.y9a{bottom:543.855000px;}
.y1a7{bottom:544.035000px;}
.y15e{bottom:544.215000px;}
.y1d2{bottom:544.395000px;}
.y78{bottom:544.575000px;}
.y3f{bottom:544.755000px;}
.y5c{bottom:544.935000px;}
.yf0{bottom:545.115000px;}
.y18{bottom:545.475000px;}
.y1ca{bottom:545.655000px;}
.y141{bottom:555.945000px;}
.yb7{bottom:573.225000px;}
.yd7{bottom:573.405000px;}
.y1e9{bottom:573.765000px;}
.y1dd{bottom:573.945000px;}
.y1e3{bottom:574.125000px;}
.y99{bottom:574.305000px;}
.y15d{bottom:574.485000px;}
.y77{bottom:574.845000px;}
.y14f{bottom:575.025000px;}
.y3e{bottom:575.205000px;}
.yef{bottom:575.385000px;}
.y17{bottom:575.565000px;}
.y17f{bottom:575.745000px;}
.y1c9{bottom:575.925000px;}
.y140{bottom:581.325000px;}
.y192{bottom:584.745000px;}
.yb6{bottom:603.285000px;}
.y12e{bottom:603.465000px;}
.yd6{bottom:603.645000px;}
.y1dc{bottom:604.005000px;}
.y1e2{bottom:604.185000px;}
.y98{bottom:604.545000px;}
.y1a6{bottom:604.725000px;}
.y76{bottom:604.905000px;}
.y1b2{bottom:605.085000px;}
.y1b8{bottom:605.265000px;}
.y5b{bottom:605.445000px;}
.y3d{bottom:605.625000px;}
.y17d{bottom:605.985000px;}
.y16{bottom:606.165000px;}
.y13e{bottom:606.705000px;}
.y13f{bottom:612.645000px;}
.y17e{bottom:613.545000px;}
.y191{bottom:616.065000px;}
.yb5{bottom:633.525000px;}
.yd5{bottom:633.705000px;}
.y12d{bottom:633.885000px;}
.y1f5{bottom:634.245000px;}
.y1db{bottom:634.425000px;}
.y13d{bottom:634.605000px;}
.y97{bottom:634.785000px;}
.y15c{bottom:634.965000px;}
.y1a5{bottom:635.145000px;}
.y75{bottom:635.325000px;}
.y5a{bottom:635.505000px;}
.yee{bottom:635.865000px;}
.y10a{bottom:636.045000px;}
.y15{bottom:636.225000px;}
.y1c8{bottom:636.405000px;}
.y190{bottom:647.205000px;}
.yb4{bottom:663.585000px;}
.yd4{bottom:664.125000px;}
.y12c{bottom:664.305000px;}
.y13c{bottom:664.665000px;}
.y96{bottom:664.845000px;}
.y11a{bottom:665.025000px;}
.y1a4{bottom:665.385000px;}
.y15b{bottom:665.565000px;}
.y1b7{bottom:665.745000px;}
.y73{bottom:665.925000px;}
.y59{bottom:666.105000px;}
.y109{bottom:666.285000px;}
.y3c{bottom:666.465000px;}
.y14e{bottom:666.645000px;}
.y14{bottom:666.825000px;}
.y74{bottom:673.485000px;}
.y18f{bottom:678.345000px;}
.yb3{bottom:694.185000px;}
.yd2{bottom:694.545000px;}
.y12b{bottom:694.905000px;}
.y118{bottom:695.085000px;}
.y95{bottom:695.265000px;}
.y1b1{bottom:695.445000px;}
.y1e1{bottom:695.625000px;}
.y172{bottom:695.805000px;}
.y15a{bottom:695.985000px;}
.y72{bottom:696.165000px;}
.y58{bottom:696.345000px;}
.y3b{bottom:696.525000px;}
.y13{bottom:696.885000px;}
.yd3{bottom:702.105000px;}
.y119{bottom:702.645000px;}
.y18c{bottom:709.665000px;}
.y171{bottom:723.525000px;}
.yb2{bottom:724.605000px;}
.yd1{bottom:724.965000px;}
.y117{bottom:725.325000px;}
.y94{bottom:725.685000px;}
.y1a3{bottom:726.045000px;}
.y71{bottom:726.225000px;}
.y57{bottom:726.585000px;}
.y108{bottom:726.765000px;}
.y3a{bottom:726.945000px;}
.y12{bottom:727.485000px;}
.y170{bottom:748.725000px;}
.yb1{bottom:755.205000px;}
.yd0{bottom:755.565000px;}
.y116{bottom:755.745000px;}
.y1e8{bottom:755.925000px;}
.y93{bottom:756.105000px;}
.y1a2{bottom:756.285000px;}
.y159{bottom:756.465000px;}
.yed{bottom:756.645000px;}
.y56{bottom:756.825000px;}
.y107{bottom:757.005000px;}
.y39{bottom:757.185000px;}
.y11{bottom:757.545000px;}
.y18b{bottom:763.665000px;}
.y16f{bottom:773.925000px;}
.yb0{bottom:785.265000px;}
.ycf{bottom:785.805000px;}
.y12a{bottom:785.985000px;}
.y1f4{bottom:786.165000px;}
.y115{bottom:786.345000px;}
.y1a1{bottom:786.525000px;}
.y92{bottom:786.705000px;}
.y55{bottom:787.065000px;}
.yec{bottom:787.245000px;}
.y38{bottom:787.425000px;}
.y1c7{bottom:787.605000px;}
.y10{bottom:787.965000px;}
.y16e{bottom:799.125000px;}
.yaf{bottom:815.685000px;}
.yce{bottom:816.225000px;}
.y114{bottom:816.405000px;}
.y18a{bottom:816.585000px;}
.y91{bottom:816.765000px;}
.y1da{bottom:816.945000px;}
.y54{bottom:817.125000px;}
.y37{bottom:817.485000px;}
.y1d1{bottom:817.665000px;}
.y14d{bottom:817.845000px;}
.yf{bottom:822.885000px;}
.y16d{bottom:824.505000px;}
.y17c{bottom:825.405000px;}
.yad{bottom:846.150000px;}
.ycc{bottom:846.510000px;}
.y189{bottom:846.690000px;}
.y113{bottom:846.870000px;}
.y8f{bottom:847.050000px;}
.y158{bottom:847.230000px;}
.y53{bottom:847.410000px;}
.y106{bottom:847.590000px;}
.yeb{bottom:847.770000px;}
.y1d0{bottom:847.950000px;}
.y36{bottom:848.130000px;}
.y16c{bottom:849.750000px;}
.yae{bottom:853.710000px;}
.ycd{bottom:854.070000px;}
.y90{bottom:854.610000px;}
.ye{bottom:858.570000px;}
.y16b{bottom:874.950000px;}
.yac{bottom:876.570000px;}
.ycb{bottom:876.930000px;}
.y129{bottom:877.110000px;}
.y112{bottom:877.290000px;}
.y1f3{bottom:877.470000px;}
.y8e{bottom:877.650000px;}
.y52{bottom:877.830000px;}
.y35{bottom:878.190000px;}
.y14c{bottom:878.370000px;}
.yd{bottom:888.810000px;}
.y16a{bottom:900.150000px;}
.yab{bottom:906.990000px;}
.yca{bottom:907.170000px;}
.y128{bottom:907.530000px;}
.y111{bottom:907.710000px;}
.y8d{bottom:907.890000px;}
.y51{bottom:908.070000px;}
.y105{bottom:908.250000px;}
.y70{bottom:908.430000px;}
.y14b{bottom:908.610000px;}
.y34{bottom:908.790000px;}
.yc{bottom:916.530000px;}
.y169{bottom:925.530000px;}
.yc9{bottom:937.230000px;}
.yaa{bottom:937.410000px;}
.y13b{bottom:937.590000px;}
.y1f2{bottom:937.770000px;}
.y19f{bottom:937.950000px;}
.y8c{bottom:938.130000px;}
.yea{bottom:938.310000px;}
.y50{bottom:938.490000px;}
.y104{bottom:938.670000px;}
.y14a{bottom:938.850000px;}
.y33{bottom:939.030000px;}
.yb{bottom:943.710000px;}
.y188{bottom:945.150000px;}
.y1a0{bottom:945.510000px;}
.y168{bottom:950.910000px;}
.yc8{bottom:967.830000px;}
.ya9{bottom:968.010000px;}
.y8b{bottom:968.190000px;}
.y127{bottom:968.370000px;}
.ye9{bottom:968.550000px;}
.y6f{bottom:968.730000px;}
.y4f{bottom:968.910000px;}
.y103{bottom:969.090000px;}
.y32{bottom:969.270000px;}
.ya{bottom:976.290000px;}
.yc7{bottom:998.250000px;}
.ya8{bottom:998.430000px;}
.ye8{bottom:998.610000px;}
.y8a{bottom:998.790000px;}
.y6e{bottom:998.970000px;}
.y102{bottom:999.150000px;}
.y31{bottom:999.330000px;}
.y4e{bottom:999.510000px;}
.y167{bottom:1001.670000px;}
.y126{bottom:1005.990000px;}
.y9{bottom:1011.570000px;}
.ya7{bottom:1028.670000px;}
.y125{bottom:1028.850000px;}
.y89{bottom:1029.030000px;}
.y6d{bottom:1029.210000px;}
.y101{bottom:1029.390000px;}
.y30{bottom:1029.750000px;}
.y8{bottom:1046.670000px;}
.y88{bottom:1059.090000px;}
.y124{bottom:1059.270000px;}
.y6c{bottom:1059.450000px;}
.y100{bottom:1059.630000px;}
.y110{bottom:1059.810000px;}
.y2f{bottom:1059.990000px;}
.ye7{bottom:1067.010000px;}
.y7{bottom:1084.650000px;}
.y6b{bottom:1089.510000px;}
.y123{bottom:1089.690000px;}
.y17b{bottom:1089.870000px;}
.y2e{bottom:1090.050000px;}
.y157{bottom:1097.610000px;}
.y6a{bottom:1119.930000px;}
.y6{bottom:1120.290000px;}
.ye6{bottom:1127.520000px;}
.y29{bottom:1172.700000px;}
.y28{bottom:1189.800000px;}
.y1{bottom:1206.900000px;}
.y27{bottom:1207.620000px;}
.h12{height:30.225000px;}
.he{height:30.420000px;}
.hb{height:30.568359px;}
.h11{height:30.585000px;}
.hd{height:34.969922px;}
.ha{height:35.459297px;}
.h10{height:40.961602px;}
.h3{height:50.743477px;}
.h7{height:60.292969px;}
.h13{height:60.465000px;}
.h15{height:60.471000px;}
.h14{height:60.501000px;}
.hf{height:60.870000px;}
.h4{height:61.136719px;}
.h2{height:61.423863px;}
.hc{height:65.209922px;}
.h8{height:65.699297px;}
.h6{height:71.529961px;}
.h5{height:81.311836px;}
.h9{height:1262.864960px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:108.171000px;}
.w4{width:126.921000px;}
.w5{width:137.376000px;}
.w7{width:137.541000px;}
.w6{width:153.525000px;}
.wc{width:169.395000px;}
.w8{width:171.555000px;}
.wb{width:177.690000px;}
.w9{width:190.650000px;}
.wa{width:203.595000px;}
.w2{width:892.957500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x34{left:7.731000px;}
.x39{left:12.225000px;}
.x3a{left:18.720000px;}
.x43{left:21.960000px;}
.x3f{left:25.185000px;}
.x40{left:30.240000px;}
.x3c{left:38.505000px;}
.x3e{left:83.880000px;}
.x41{left:85.845000px;}
.x1{left:127.656000px;}
.x1c{left:148.873500px;}
.x1d{left:153.390000px;}
.xe{left:154.627500px;}
.x1e{left:157.890000px;}
.x3{left:159.510000px;}
.x18{left:160.927500px;}
.x2c{left:163.627500px;}
.x19{left:166.350000px;}
.xa{left:168.127500px;}
.x4{left:170.130000px;}
.xb{left:172.650000px;}
.x2d{left:174.270000px;}
.x22{left:177.150000px;}
.x25{left:179.130000px;}
.x7{left:180.547500px;}
.x8{left:185.790000px;}
.x3b{left:191.010000px;}
.xc{left:223.027500px;}
.xd{left:228.270000px;}
.x35{left:237.285000px;}
.x1a{left:288.952500px;}
.x1b{left:299.415000px;}
.x1f{left:301.215000px;}
.x5{left:308.775000px;}
.x26{left:310.012500px;}
.x27{left:319.035000px;}
.x2a{left:323.512500px;}
.x3d{left:330.015000px;}
.x2b{left:333.975000px;}
.x9{left:343.695000px;}
.x36{left:364.935000px;}
.x42{left:374.835000px;}
.x2e{left:407.932500px;}
.x2f{left:418.395000px;}
.x2{left:435.135000px;}
.xf{left:439.635000px;}
.x45{left:462.112500px;}
.x46{left:472.575000px;}
.x14{left:488.062500px;}
.x6{left:489.165000px;}
.x15{left:493.305000px;}
.x37{left:503.220000px;}
.x44{left:553.260000px;}
.x28{left:581.482500px;}
.x32{left:587.602500px;}
.x29{left:591.945000px;}
.x4a{left:596.625000px;}
.x33{left:598.245000px;}
.x20{left:630.442500px;}
.x23{left:636.022500px;}
.x21{left:640.905000px;}
.x49{left:644.505000px;}
.x24{left:646.665000px;}
.x48{left:656.385000px;}
.x38{left:657.480000px;}
.x47{left:663.945000px;}
.x30{left:680.167500px;}
.x31{left:690.630000px;}
.x12{left:715.447500px;}
.x13{left:720.870000px;}
.x10{left:767.647500px;}
.x11{left:772.890000px;}
.x16{left:796.807500px;}
.x17{left:802.050000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.320000pt;}
.v1{vertical-align:26.880000pt;}
.ls28{letter-spacing:-1.984000pt;}
.ls15{letter-spacing:-0.896000pt;}
.ls4b{letter-spacing:-0.832000pt;}
.ls82{letter-spacing:-0.768000pt;}
.ls50{letter-spacing:-0.576000pt;}
.ls2d{letter-spacing:-0.512000pt;}
.ls8f{letter-spacing:-0.448000pt;}
.ls7e{letter-spacing:-0.384000pt;}
.lsf{letter-spacing:-0.302933pt;}
.ls47{letter-spacing:-0.266667pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls53{letter-spacing:-0.239467pt;}
.ls16{letter-spacing:-0.192000pt;}
.ls36{letter-spacing:-0.148267pt;}
.ls14{letter-spacing:-0.128000pt;}
.ls89{letter-spacing:-0.093867pt;}
.ls11{letter-spacing:-0.064000pt;}
.ls66{letter-spacing:-0.011520pt;}
.ls8c{letter-spacing:-0.003840pt;}
.ls1d{letter-spacing:-0.000003pt;}
.ls1{letter-spacing:0.000000pt;}
.ls42{letter-spacing:0.000001pt;}
.ls45{letter-spacing:0.014080pt;}
.ls3e{letter-spacing:0.032000pt;}
.ls8e{letter-spacing:0.042667pt;}
.ls67{letter-spacing:0.054400pt;}
.ls52{letter-spacing:0.056533pt;}
.ls1c{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.071467pt;}
.ls0{letter-spacing:0.078720pt;}
.ls59{letter-spacing:0.095467pt;}
.ls80{letter-spacing:0.106667pt;}
.ls4{letter-spacing:0.128000pt;}
.ls4a{letter-spacing:0.152960pt;}
.ls24{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.192000pt;}
.ls48{letter-spacing:0.230933pt;}
.ls88{letter-spacing:0.231040pt;}
.ls41{letter-spacing:0.234667pt;}
.ls3d{letter-spacing:0.236267pt;}
.ls5f{letter-spacing:0.239467pt;}
.ls8{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.265600pt;}
.ls68{letter-spacing:0.288000pt;}
.ls3c{letter-spacing:0.320000pt;}
.ls38{letter-spacing:0.352000pt;}
.ls13{letter-spacing:0.384000pt;}
.ls51{letter-spacing:0.400533pt;}
.ls30{letter-spacing:0.416000pt;}
.ls27{letter-spacing:0.433280pt;}
.ls7f{letter-spacing:0.448000pt;}
.ls46{letter-spacing:0.524800pt;}
.ls7{letter-spacing:0.576000pt;}
.ls65{letter-spacing:0.688000pt;}
.ls64{letter-spacing:0.698667pt;}
.ls10{letter-spacing:0.704000pt;}
.ls54{letter-spacing:0.768000pt;}
.ls2e{letter-spacing:0.784000pt;}
.lse{letter-spacing:0.800000pt;}
.ls9{letter-spacing:0.832000pt;}
.ls12{letter-spacing:0.896000pt;}
.ls5a{letter-spacing:0.959360pt;}
.ls35{letter-spacing:1.073280pt;}
.ls29{letter-spacing:1.216000pt;}
.ls57{letter-spacing:1.376000pt;}
.ls4e{letter-spacing:1.713280pt;}
.lsb{letter-spacing:1.856000pt;}
.ls4f{letter-spacing:2.353280pt;}
.lsd{letter-spacing:2.496000pt;}
.ls3b{letter-spacing:2.993280pt;}
.ls2b{letter-spacing:3.136000pt;}
.ls2f{letter-spacing:3.633280pt;}
.ls83{letter-spacing:3.776000pt;}
.ls3a{letter-spacing:4.273280pt;}
.ls23{letter-spacing:4.416000pt;}
.ls5c{letter-spacing:4.913280pt;}
.ls25{letter-spacing:5.056000pt;}
.ls21{letter-spacing:5.312000pt;}
.ls5d{letter-spacing:5.553280pt;}
.ls32{letter-spacing:5.696000pt;}
.ls84{letter-spacing:5.952000pt;}
.ls6a{letter-spacing:6.079360pt;}
.ls60{letter-spacing:6.193280pt;}
.ls20{letter-spacing:6.336000pt;}
.ls7d{letter-spacing:6.592000pt;}
.ls6c{letter-spacing:6.833280pt;}
.ls19{letter-spacing:6.976000pt;}
.ls81{letter-spacing:7.473280pt;}
.ls1e{letter-spacing:7.616000pt;}
.ls40{letter-spacing:8.256000pt;}
.ls90{letter-spacing:8.416000pt;}
.ls33{letter-spacing:8.753280pt;}
.ls1a{letter-spacing:8.896000pt;}
.ls34{letter-spacing:9.393280pt;}
.ls2c{letter-spacing:9.536000pt;}
.ls8a{letter-spacing:9.546667pt;}
.ls69{letter-spacing:10.176000pt;}
.ls91{letter-spacing:10.613333pt;}
.lsa{letter-spacing:10.816000pt;}
.ls58{letter-spacing:11.072000pt;}
.ls26{letter-spacing:11.313280pt;}
.ls39{letter-spacing:12.096000pt;}
.ls6d{letter-spacing:12.352000pt;}
.ls49{letter-spacing:12.736000pt;}
.ls17{letter-spacing:13.376000pt;}
.ls62{letter-spacing:13.568000pt;}
.ls8d{letter-spacing:13.632000pt;}
.ls43{letter-spacing:13.873280pt;}
.ls1f{letter-spacing:14.016000pt;}
.ls5e{letter-spacing:15.153280pt;}
.ls18{letter-spacing:15.296000pt;}
.ls55{letter-spacing:15.936000pt;}
.ls1b{letter-spacing:16.064000pt;}
.ls77{letter-spacing:16.128000pt;}
.ls6f{letter-spacing:16.192000pt;}
.ls74{letter-spacing:16.256000pt;}
.ls4d{letter-spacing:16.433280pt;}
.ls56{letter-spacing:16.512000pt;}
.ls79{letter-spacing:16.576000pt;}
.ls72{letter-spacing:16.768000pt;}
.ls6e{letter-spacing:16.896000pt;}
.ls87{letter-spacing:17.216000pt;}
.ls44{letter-spacing:20.364800pt;}
.ls4c{letter-spacing:21.216000pt;}
.ls22{letter-spacing:21.696000pt;}
.ls75{letter-spacing:22.656000pt;}
.ls31{letter-spacing:22.976000pt;}
.ls63{letter-spacing:23.168000pt;}
.ls70{letter-spacing:23.232000pt;}
.ls86{letter-spacing:24.192000pt;}
.ls37{letter-spacing:24.576000pt;}
.ls61{letter-spacing:24.896000pt;}
.ls3f{letter-spacing:25.642667pt;}
.ls8b{letter-spacing:27.456000pt;}
.ls85{letter-spacing:28.800000pt;}
.lsc{letter-spacing:29.376000pt;}
.ls2a{letter-spacing:30.016000pt;}
.ls5b{letter-spacing:37.520640pt;}
.ls7a{letter-spacing:41.536000pt;}
.ls7b{letter-spacing:46.016000pt;}
.ls73{letter-spacing:46.848000pt;}
.ls71{letter-spacing:46.912000pt;}
.ls76{letter-spacing:46.976000pt;}
.ls7c{letter-spacing:47.296000pt;}
.ls78{letter-spacing:47.488000pt;}
.ls6b{letter-spacing:113.759360pt;}
.ws9{word-spacing:-53.385600pt;}
.ws1{word-spacing:-21.041280pt;}
.wsb{word-spacing:-18.688000pt;}
.ws0{word-spacing:-18.495360pt;}
.ws3e{word-spacing:-18.304000pt;}
.ws54{word-spacing:-18.176000pt;}
.ws29{word-spacing:-18.112000pt;}
.ws19{word-spacing:-18.048000pt;}
.ws4f{word-spacing:-17.984001pt;}
.ws2{word-spacing:-17.984000pt;}
.ws37{word-spacing:-17.983997pt;}
.ws28{word-spacing:-17.920000pt;}
.ws3b{word-spacing:-17.856000pt;}
.ws2d{word-spacing:-17.792000pt;}
.ws62{word-spacing:-17.728000pt;}
.ws66{word-spacing:-17.536000pt;}
.ws42{word-spacing:-16.064000pt;}
.wsc{word-spacing:-16.000000pt;}
.ws17{word-spacing:-15.936000pt;}
.ws40{word-spacing:-15.872000pt;}
.ws3{word-spacing:-15.808000pt;}
.ws2a{word-spacing:-15.744000pt;}
.ws32{word-spacing:-15.710720pt;}
.ws10{word-spacing:-15.616000pt;}
.ws5e{word-spacing:-15.424000pt;}
.ws30{word-spacing:-15.296000pt;}
.ws58{word-spacing:-15.246720pt;}
.ws5d{word-spacing:-15.166187pt;}
.ws45{word-spacing:-15.157653pt;}
.ws57{word-spacing:-15.022187pt;}
.ws5c{word-spacing:-14.981120pt;}
.ws41{word-spacing:-14.926720pt;}
.ws3c{word-spacing:-14.778453pt;}
.ws44{word-spacing:-14.660053pt;}
.wsa{word-spacing:-14.623787pt;}
.ws4c{word-spacing:-13.521173pt;}
.ws3d{word-spacing:-13.120640pt;}
.ws4d{word-spacing:-12.881173pt;}
.ws18{word-spacing:-10.430720pt;}
.ws3a{word-spacing:-9.168640pt;}
.ws4e{word-spacing:-7.424000pt;}
.ws56{word-spacing:-7.104000pt;}
.ws55{word-spacing:-6.976000pt;}
.ws59{word-spacing:-3.877760pt;}
.ws5a{word-spacing:-1.294720pt;}
.ws63{word-spacing:-1.056000pt;}
.ws20{word-spacing:-0.640000pt;}
.ws12{word-spacing:-0.064000pt;}
.ws8{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.192000pt;}
.ws1d{word-spacing:0.320008pt;}
.ws1b{word-spacing:0.384000pt;}
.ws3f{word-spacing:0.448000pt;}
.ws65{word-spacing:0.480000pt;}
.ws1e{word-spacing:0.512000pt;}
.ws51{word-spacing:0.576000pt;}
.ws52{word-spacing:0.704000pt;}
.ws5b{word-spacing:0.743040pt;}
.ws35{word-spacing:0.832000pt;}
.ws64{word-spacing:0.938667pt;}
.ws31{word-spacing:0.960000pt;}
.wsd{word-spacing:1.088000pt;}
.ws1f{word-spacing:1.152000pt;}
.ws13{word-spacing:1.216000pt;}
.ws23{word-spacing:1.322667pt;}
.ws36{word-spacing:1.344000pt;}
.ws2e{word-spacing:6.464000pt;}
.ws6{word-spacing:6.624000pt;}
.ws2c{word-spacing:6.720000pt;}
.ws26{word-spacing:6.784000pt;}
.ws2f{word-spacing:6.848000pt;}
.ws5f{word-spacing:6.976000pt;}
.ws46{word-spacing:7.018667pt;}
.ws4a{word-spacing:7.082667pt;}
.ws14{word-spacing:7.104000pt;}
.ws47{word-spacing:7.136000pt;}
.ws34{word-spacing:7.210667pt;}
.ws50{word-spacing:7.232000pt;}
.ws27{word-spacing:7.264000pt;}
.wsf{word-spacing:7.338667pt;}
.ws5{word-spacing:7.360000pt;}
.ws22{word-spacing:7.360008pt;}
.ws2b{word-spacing:7.402667pt;}
.ws7{word-spacing:7.424000pt;}
.ws4{word-spacing:7.466667pt;}
.ws1c{word-spacing:7.488000pt;}
.ws25{word-spacing:7.520000pt;}
.ws49{word-spacing:7.520008pt;}
.ws33{word-spacing:7.530667pt;}
.ws16{word-spacing:7.552000pt;}
.ws24{word-spacing:7.584000pt;}
.ws15{word-spacing:7.594667pt;}
.wse{word-spacing:7.616000pt;}
.ws21{word-spacing:7.648000pt;}
.ws53{word-spacing:7.744000pt;}
.ws11{word-spacing:7.776000pt;}
.ws39{word-spacing:8.128000pt;}
.ws48{word-spacing:8.384000pt;}
.ws43{word-spacing:8.512000pt;}
.ws38{word-spacing:8.704000pt;}
.ws60{word-spacing:13.120000pt;}
.ws61{word-spacing:13.312000pt;}
.ws4b{word-spacing:31.680000pt;}
._29{margin-left:-14.692480pt;}
._15{margin-left:-5.112533pt;}
._d{margin-left:-4.146560pt;}
._c{margin-left:-3.200000pt;}
._b{margin-left:-2.112000pt;}
._3{margin-left:-0.973440pt;}
._0{width:1.009280pt;}
._9{width:1.900160pt;}
._10{width:2.801493pt;}
._13{width:4.480000pt;}
._14{width:5.504000pt;}
._e{width:6.912000pt;}
._f{width:8.384000pt;}
._6{width:10.112000pt;}
._16{width:11.022720pt;}
._17{width:11.978667pt;}
._4{width:13.632000pt;}
._5{width:15.050667pt;}
._a{width:16.373333pt;}
._24{width:17.514027pt;}
._8{width:19.134933pt;}
._7{width:20.800000pt;}
._12{width:21.709440pt;}
._1a{width:23.146667pt;}
._11{width:24.576000pt;}
._1d{width:25.600000pt;}
._1b{width:26.880000pt;}
._1c{width:27.946667pt;}
._18{width:28.864000pt;}
._19{width:30.184107pt;}
._25{width:31.703893pt;}
._28{width:33.088000pt;}
._21{width:34.496000pt;}
._22{width:35.780053pt;}
._2b{width:39.670400pt;}
._27{width:41.984000pt;}
._2a{width:43.495680pt;}
._26{width:47.288747pt;}
._1e{width:182.981547pt;}
._1f{width:195.307093pt;}
._20{width:196.585173pt;}
._23{width:209.418667pt;}
._1{width:344.570667pt;}
._2{width:652.683307pt;}
.fs5{font-size:32.000000pt;}
.fs4{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y1c1{bottom:13.426667pt;}
.y1c5{bottom:13.432000pt;}
.y18e{bottom:13.440000pt;}
.y1ae{bottom:13.586667pt;}
.y18d{bottom:13.600000pt;}
.y1c3{bottom:40.306667pt;}
.y1bc{bottom:40.320000pt;}
.y1c0{bottom:40.346667pt;}
.y1c6{bottom:40.466667pt;}
.y1be{bottom:40.480000pt;}
.y194{bottom:40.506667pt;}
.y5{bottom:40.992000pt;}
.y2d{bottom:41.472000pt;}
.y2c{bottom:56.352000pt;}
.y4{bottom:56.832000pt;}
.y2b{bottom:71.232000pt;}
.y3{bottom:71.712000pt;}
.y2{bottom:88.992000pt;}
.y2a{bottom:91.232000pt;}
.y87{bottom:106.112000pt;}
.y4d{bottom:106.912000pt;}
.y69{bottom:107.232000pt;}
.y26{bottom:108.672000pt;}
.y86{bottom:111.392000pt;}
.y1e0{bottom:112.032000pt;}
.y1d9{bottom:115.872000pt;}
.y1c4{bottom:117.800000pt;}
.y85{bottom:120.672000pt;}
.y13a{bottom:120.832000pt;}
.ya6{bottom:120.992000pt;}
.yc6{bottom:121.152000pt;}
.ye5{bottom:126.272000pt;}
.yc5{bottom:126.432000pt;}
.y1f1{bottom:132.032000pt;}
.y4c{bottom:134.106667pt;}
.y68{bottom:134.266667pt;}
.y1b6{bottom:134.426667pt;}
.y25{bottom:135.386667pt;}
.yc4{bottom:135.706667pt;}
.ye4{bottom:135.866667pt;}
.y166{bottom:136.026667pt;}
.ya5{bottom:136.186667pt;}
.y165{bottom:141.306667pt;}
.ya4{bottom:141.466667pt;}
.y1d8{bottom:142.586667pt;}
.y164{bottom:150.586667pt;}
.ya3{bottom:150.746667pt;}
.ye3{bottom:150.906667pt;}
.y122{bottom:151.226667pt;}
.ye2{bottom:156.186667pt;}
.y121{bottom:156.506667pt;}
.y139{bottom:159.066667pt;}
.y1f0{bottom:159.226667pt;}
.y1e7{bottom:159.706667pt;}
.y84{bottom:159.866667pt;}
.y17a{bottom:160.346667pt;}
.y4b{bottom:160.986667pt;}
.y67{bottom:161.306667pt;}
.y1cf{bottom:161.626667pt;}
.y24{bottom:162.266667pt;}
.ye1{bottom:165.466667pt;}
.y187{bottom:165.626667pt;}
.yff{bottom:165.946667pt;}
.y1d7{bottom:169.786667pt;}
.yfe{bottom:171.226667pt;}
.y1b0{bottom:171.866667pt;}
.y1c2{bottom:172.200000pt;}
.yfd{bottom:180.826667pt;}
.y1af{bottom:181.320000pt;}
.y138{bottom:185.786667pt;}
.y1ef{bottom:186.106667pt;}
.yc3{bottom:186.426667pt;}
.y83{bottom:187.066667pt;}
.y179{bottom:187.226667pt;}
.y4a{bottom:187.866667pt;}
.y1b5{bottom:188.026667pt;}
.y66{bottom:188.506667pt;}
.y23{bottom:189.146667pt;}
.yfc{bottom:196.026667pt;}
.y1d6{bottom:196.826667pt;}
.y19e{bottom:207.386667pt;}
.y1ad{bottom:208.840000pt;}
.yfb{bottom:211.066667pt;}
.y137{bottom:212.826667pt;}
.yc2{bottom:213.466667pt;}
.y120{bottom:213.626667pt;}
.y149{bottom:213.946667pt;}
.y82{bottom:214.106667pt;}
.y178{bottom:214.266667pt;}
.y49{bottom:214.586667pt;}
.y1d5{bottom:214.746667pt;}
.y10f{bottom:214.906667pt;}
.y65{bottom:215.226667pt;}
.y186{bottom:215.386667pt;}
.y22{bottom:216.026667pt;}
.yfa{bottom:226.106667pt;}
.y1bf{bottom:226.760000pt;}
.y19d{bottom:234.426667pt;}
.y136{bottom:239.866667pt;}
.y1ee{bottom:240.026667pt;}
.yc1{bottom:240.346667pt;}
.ye0{bottom:240.826667pt;}
.ya2{bottom:240.986667pt;}
.y177{bottom:241.146667pt;}
.y81{bottom:241.306667pt;}
.y48{bottom:241.626667pt;}
.y163{bottom:241.786667pt;}
.y64{bottom:242.266667pt;}
.y1ce{bottom:242.466667pt;}
.y21{bottom:242.946667pt;}
.y1ac{bottom:250.306667pt;}
.yf9{bottom:256.386667pt;}
.y19c{bottom:261.506667pt;}
.y1ed{bottom:266.786667pt;}
.y135{bottom:266.946667pt;}
.yc0{bottom:267.266667pt;}
.y148{bottom:267.586667pt;}
.ydf{bottom:267.746667pt;}
.ya1{bottom:267.906667pt;}
.y80{bottom:268.066667pt;}
.y1b4{bottom:268.546667pt;}
.y162{bottom:268.706667pt;}
.y47{bottom:268.866667pt;}
.y185{bottom:269.186667pt;}
.y63{bottom:269.506667pt;}
.y20{bottom:269.666667pt;}
.yf8{bottom:271.426667pt;}
.yf7{bottom:276.706667pt;}
.y1ab{bottom:277.026667pt;}
.y1bd{bottom:281.186667pt;}
.yf6{bottom:285.986667pt;}
.y19b{bottom:288.546667pt;}
.y134{bottom:293.986667pt;}
.ybf{bottom:294.146667pt;}
.y1e6{bottom:294.306667pt;}
.y147{bottom:294.466667pt;}
.yde{bottom:294.626667pt;}
.ya0{bottom:294.786667pt;}
.y7f{bottom:294.946667pt;}
.y156{bottom:295.266667pt;}
.y1d4{bottom:295.426667pt;}
.y46{bottom:295.586667pt;}
.y184{bottom:296.066667pt;}
.y62{bottom:296.386667pt;}
.y1f{bottom:296.866667pt;}
.y1aa{bottom:299.746667pt;}
.y19a{bottom:315.586667pt;}
.y1ec{bottom:320.706667pt;}
.y133{bottom:320.866667pt;}
.ybe{bottom:321.026667pt;}
.y1df{bottom:321.186667pt;}
.y11f{bottom:321.346667pt;}
.y9f{bottom:321.506667pt;}
.y7e{bottom:321.986667pt;}
.y155{bottom:322.146667pt;}
.y161{bottom:322.306667pt;}
.yf5{bottom:322.466667pt;}
.y45{bottom:322.786667pt;}
.y183{bottom:322.946667pt;}
.y61{bottom:323.106667pt;}
.y1e{bottom:323.746667pt;}
.y1bb{bottom:335.586667pt;}
.y199{bottom:342.626667pt;}
.y1eb{bottom:347.746667pt;}
.ybd{bottom:347.906667pt;}
.y132{bottom:348.066667pt;}
.y146{bottom:348.226667pt;}
.ydd{bottom:348.386667pt;}
.y9e{bottom:348.546667pt;}
.y154{bottom:348.866667pt;}
.y7d{bottom:349.026667pt;}
.y1d3{bottom:349.186667pt;}
.y44{bottom:349.506667pt;}
.yf3{bottom:349.666667pt;}
.y60{bottom:350.146667pt;}
.y1cd{bottom:350.306667pt;}
.y1d{bottom:350.626667pt;}
.yf4{bottom:356.386667pt;}
.y198{bottom:369.666667pt;}
.ybc{bottom:374.786667pt;}
.y131{bottom:374.946667pt;}
.ydc{bottom:375.106667pt;}
.y11e{bottom:375.426667pt;}
.y9d{bottom:375.586667pt;}
.y176{bottom:375.746667pt;}
.y153{bottom:375.906667pt;}
.y1a9{bottom:376.066667pt;}
.y7c{bottom:376.226667pt;}
.y160{bottom:376.386667pt;}
.y10e{bottom:376.546667pt;}
.y43{bottom:376.706667pt;}
.y5f{bottom:377.026667pt;}
.y1cc{bottom:377.186667pt;}
.y1c{bottom:377.506667pt;}
.y197{bottom:396.866667pt;}
.ybb{bottom:401.506667pt;}
.y130{bottom:401.666667pt;}
.y1ea{bottom:401.986667pt;}
.y145{bottom:402.146667pt;}
.ydb{bottom:402.306667pt;}
.y175{bottom:402.466667pt;}
.y9c{bottom:402.626667pt;}
.y1a8{bottom:402.786667pt;}
.y152{bottom:402.946667pt;}
.y7b{bottom:403.106667pt;}
.y10c{bottom:403.266667pt;}
.y42{bottom:403.426667pt;}
.yf2{bottom:403.586667pt;}
.y182{bottom:403.746667pt;}
.y5e{bottom:403.906667pt;}
.y1cb{bottom:404.066667pt;}
.y1b{bottom:404.226667pt;}
.y10d{bottom:409.986667pt;}
.y196{bottom:423.906667pt;}
.y144{bottom:426.786667pt;}
.yba{bottom:428.706667pt;}
.y12f{bottom:428.866667pt;}
.yda{bottom:429.026667pt;}
.y11d{bottom:429.506667pt;}
.y174{bottom:429.666667pt;}
.y7a{bottom:429.826667pt;}
.y151{bottom:429.986667pt;}
.y15f{bottom:430.146667pt;}
.y10b{bottom:430.306667pt;}
.y1ba{bottom:430.466667pt;}
.y41{bottom:430.626667pt;}
.y5d{bottom:430.786667pt;}
.y181{bottom:430.946667pt;}
.y1a{bottom:431.106667pt;}
.y143{bottom:449.186667pt;}
.y195{bottom:451.106667pt;}
.yb9{bottom:455.586667pt;}
.yd9{bottom:455.906667pt;}
.y1e5{bottom:456.066667pt;}
.y11c{bottom:456.226667pt;}
.y173{bottom:456.386667pt;}
.y9b{bottom:456.706667pt;}
.y79{bottom:456.866667pt;}
.y150{bottom:457.026667pt;}
.y1b3{bottom:457.186667pt;}
.y1b9{bottom:457.346667pt;}
.y40{bottom:457.506667pt;}
.y180{bottom:457.666667pt;}
.yf1{bottom:457.826667pt;}
.y19{bottom:457.986667pt;}
.y193{bottom:465.026667pt;}
.y142{bottom:471.586667pt;}
.yb8{bottom:482.306667pt;}
.yd8{bottom:482.786667pt;}
.y1de{bottom:482.946667pt;}
.y1e4{bottom:483.106667pt;}
.y11b{bottom:483.266667pt;}
.y9a{bottom:483.426667pt;}
.y1a7{bottom:483.586667pt;}
.y15e{bottom:483.746667pt;}
.y1d2{bottom:483.906667pt;}
.y78{bottom:484.066667pt;}
.y3f{bottom:484.226667pt;}
.y5c{bottom:484.386667pt;}
.yf0{bottom:484.546667pt;}
.y18{bottom:484.866667pt;}
.y1ca{bottom:485.026667pt;}
.y141{bottom:494.173333pt;}
.yb7{bottom:509.533333pt;}
.yd7{bottom:509.693333pt;}
.y1e9{bottom:510.013333pt;}
.y1dd{bottom:510.173333pt;}
.y1e3{bottom:510.333333pt;}
.y99{bottom:510.493333pt;}
.y15d{bottom:510.653333pt;}
.y77{bottom:510.973333pt;}
.y14f{bottom:511.133333pt;}
.y3e{bottom:511.293333pt;}
.yef{bottom:511.453333pt;}
.y17{bottom:511.613333pt;}
.y17f{bottom:511.773333pt;}
.y1c9{bottom:511.933333pt;}
.y140{bottom:516.733333pt;}
.y192{bottom:519.773333pt;}
.yb6{bottom:536.253333pt;}
.y12e{bottom:536.413333pt;}
.yd6{bottom:536.573333pt;}
.y1dc{bottom:536.893333pt;}
.y1e2{bottom:537.053333pt;}
.y98{bottom:537.373333pt;}
.y1a6{bottom:537.533333pt;}
.y76{bottom:537.693333pt;}
.y1b2{bottom:537.853333pt;}
.y1b8{bottom:538.013333pt;}
.y5b{bottom:538.173333pt;}
.y3d{bottom:538.333333pt;}
.y17d{bottom:538.653333pt;}
.y16{bottom:538.813333pt;}
.y13e{bottom:539.293333pt;}
.y13f{bottom:544.573333pt;}
.y17e{bottom:545.373333pt;}
.y191{bottom:547.613333pt;}
.yb5{bottom:563.133333pt;}
.yd5{bottom:563.293333pt;}
.y12d{bottom:563.453333pt;}
.y1f5{bottom:563.773333pt;}
.y1db{bottom:563.933333pt;}
.y13d{bottom:564.093333pt;}
.y97{bottom:564.253333pt;}
.y15c{bottom:564.413333pt;}
.y1a5{bottom:564.573333pt;}
.y75{bottom:564.733333pt;}
.y5a{bottom:564.893333pt;}
.yee{bottom:565.213333pt;}
.y10a{bottom:565.373333pt;}
.y15{bottom:565.533333pt;}
.y1c8{bottom:565.693333pt;}
.y190{bottom:575.293333pt;}
.yb4{bottom:589.853333pt;}
.yd4{bottom:590.333333pt;}
.y12c{bottom:590.493333pt;}
.y13c{bottom:590.813333pt;}
.y96{bottom:590.973333pt;}
.y11a{bottom:591.133333pt;}
.y1a4{bottom:591.453333pt;}
.y15b{bottom:591.613333pt;}
.y1b7{bottom:591.773333pt;}
.y73{bottom:591.933333pt;}
.y59{bottom:592.093333pt;}
.y109{bottom:592.253333pt;}
.y3c{bottom:592.413333pt;}
.y14e{bottom:592.573333pt;}
.y14{bottom:592.733333pt;}
.y74{bottom:598.653333pt;}
.y18f{bottom:602.973333pt;}
.yb3{bottom:617.053333pt;}
.yd2{bottom:617.373333pt;}
.y12b{bottom:617.693333pt;}
.y118{bottom:617.853333pt;}
.y95{bottom:618.013333pt;}
.y1b1{bottom:618.173333pt;}
.y1e1{bottom:618.333333pt;}
.y172{bottom:618.493333pt;}
.y15a{bottom:618.653333pt;}
.y72{bottom:618.813333pt;}
.y58{bottom:618.973333pt;}
.y3b{bottom:619.133333pt;}
.y13{bottom:619.453333pt;}
.yd3{bottom:624.093333pt;}
.y119{bottom:624.573333pt;}
.y18c{bottom:630.813333pt;}
.y171{bottom:643.133333pt;}
.yb2{bottom:644.093333pt;}
.yd1{bottom:644.413333pt;}
.y117{bottom:644.733333pt;}
.y94{bottom:645.053333pt;}
.y1a3{bottom:645.373333pt;}
.y71{bottom:645.533333pt;}
.y57{bottom:645.853333pt;}
.y108{bottom:646.013333pt;}
.y3a{bottom:646.173333pt;}
.y12{bottom:646.653333pt;}
.y170{bottom:665.533333pt;}
.yb1{bottom:671.293333pt;}
.yd0{bottom:671.613333pt;}
.y116{bottom:671.773333pt;}
.y1e8{bottom:671.933333pt;}
.y93{bottom:672.093333pt;}
.y1a2{bottom:672.253333pt;}
.y159{bottom:672.413333pt;}
.yed{bottom:672.573333pt;}
.y56{bottom:672.733333pt;}
.y107{bottom:672.893333pt;}
.y39{bottom:673.053333pt;}
.y11{bottom:673.373333pt;}
.y18b{bottom:678.813333pt;}
.y16f{bottom:687.933333pt;}
.yb0{bottom:698.013333pt;}
.ycf{bottom:698.493333pt;}
.y12a{bottom:698.653333pt;}
.y1f4{bottom:698.813333pt;}
.y115{bottom:698.973333pt;}
.y1a1{bottom:699.133333pt;}
.y92{bottom:699.293333pt;}
.y55{bottom:699.613333pt;}
.yec{bottom:699.773333pt;}
.y38{bottom:699.933333pt;}
.y1c7{bottom:700.093333pt;}
.y10{bottom:700.413333pt;}
.y16e{bottom:710.333333pt;}
.yaf{bottom:725.053333pt;}
.yce{bottom:725.533333pt;}
.y114{bottom:725.693333pt;}
.y18a{bottom:725.853333pt;}
.y91{bottom:726.013333pt;}
.y1da{bottom:726.173333pt;}
.y54{bottom:726.333333pt;}
.y37{bottom:726.653333pt;}
.y1d1{bottom:726.813333pt;}
.y14d{bottom:726.973333pt;}
.yf{bottom:731.453333pt;}
.y16d{bottom:732.893333pt;}
.y17c{bottom:733.693333pt;}
.yad{bottom:752.133333pt;}
.ycc{bottom:752.453333pt;}
.y189{bottom:752.613333pt;}
.y113{bottom:752.773333pt;}
.y8f{bottom:752.933333pt;}
.y158{bottom:753.093333pt;}
.y53{bottom:753.253333pt;}
.y106{bottom:753.413333pt;}
.yeb{bottom:753.573333pt;}
.y1d0{bottom:753.733333pt;}
.y36{bottom:753.893333pt;}
.y16c{bottom:755.333333pt;}
.yae{bottom:758.853333pt;}
.ycd{bottom:759.173333pt;}
.y90{bottom:759.653333pt;}
.ye{bottom:763.173333pt;}
.y16b{bottom:777.733333pt;}
.yac{bottom:779.173333pt;}
.ycb{bottom:779.493333pt;}
.y129{bottom:779.653333pt;}
.y112{bottom:779.813333pt;}
.y1f3{bottom:779.973333pt;}
.y8e{bottom:780.133333pt;}
.y52{bottom:780.293333pt;}
.y35{bottom:780.613333pt;}
.y14c{bottom:780.773333pt;}
.yd{bottom:790.053333pt;}
.y16a{bottom:800.133333pt;}
.yab{bottom:806.213333pt;}
.yca{bottom:806.373333pt;}
.y128{bottom:806.693333pt;}
.y111{bottom:806.853333pt;}
.y8d{bottom:807.013333pt;}
.y51{bottom:807.173333pt;}
.y105{bottom:807.333333pt;}
.y70{bottom:807.493333pt;}
.y14b{bottom:807.653333pt;}
.y34{bottom:807.813333pt;}
.yc{bottom:814.693333pt;}
.y169{bottom:822.693333pt;}
.yc9{bottom:833.093333pt;}
.yaa{bottom:833.253333pt;}
.y13b{bottom:833.413333pt;}
.y1f2{bottom:833.573333pt;}
.y19f{bottom:833.733333pt;}
.y8c{bottom:833.893333pt;}
.yea{bottom:834.053333pt;}
.y50{bottom:834.213333pt;}
.y104{bottom:834.373333pt;}
.y14a{bottom:834.533333pt;}
.y33{bottom:834.693333pt;}
.yb{bottom:838.853333pt;}
.y188{bottom:840.133333pt;}
.y1a0{bottom:840.453333pt;}
.y168{bottom:845.253333pt;}
.yc8{bottom:860.293333pt;}
.ya9{bottom:860.453333pt;}
.y8b{bottom:860.613333pt;}
.y127{bottom:860.773333pt;}
.ye9{bottom:860.933333pt;}
.y6f{bottom:861.093333pt;}
.y4f{bottom:861.253333pt;}
.y103{bottom:861.413333pt;}
.y32{bottom:861.573333pt;}
.ya{bottom:867.813333pt;}
.yc7{bottom:887.333333pt;}
.ya8{bottom:887.493333pt;}
.ye8{bottom:887.653333pt;}
.y8a{bottom:887.813333pt;}
.y6e{bottom:887.973333pt;}
.y102{bottom:888.133333pt;}
.y31{bottom:888.293333pt;}
.y4e{bottom:888.453333pt;}
.y167{bottom:890.373333pt;}
.y126{bottom:894.213333pt;}
.y9{bottom:899.173333pt;}
.ya7{bottom:914.373333pt;}
.y125{bottom:914.533333pt;}
.y89{bottom:914.693333pt;}
.y6d{bottom:914.853333pt;}
.y101{bottom:915.013333pt;}
.y30{bottom:915.333333pt;}
.y8{bottom:930.373333pt;}
.y88{bottom:941.413333pt;}
.y124{bottom:941.573333pt;}
.y6c{bottom:941.733333pt;}
.y100{bottom:941.893333pt;}
.y110{bottom:942.053333pt;}
.y2f{bottom:942.213333pt;}
.ye7{bottom:948.453333pt;}
.y7{bottom:964.133333pt;}
.y6b{bottom:968.453333pt;}
.y123{bottom:968.613333pt;}
.y17b{bottom:968.773333pt;}
.y2e{bottom:968.933333pt;}
.y157{bottom:975.653333pt;}
.y6a{bottom:995.493333pt;}
.y6{bottom:995.813333pt;}
.ye6{bottom:1002.240000pt;}
.y29{bottom:1042.400000pt;}
.y28{bottom:1057.600000pt;}
.y1{bottom:1072.800000pt;}
.y27{bottom:1073.440000pt;}
.h12{height:26.866667pt;}
.he{height:27.040000pt;}
.hb{height:27.171875pt;}
.h11{height:27.186667pt;}
.hd{height:31.084375pt;}
.ha{height:31.519375pt;}
.h10{height:36.410312pt;}
.h3{height:45.105313pt;}
.h7{height:53.593750pt;}
.h13{height:53.746667pt;}
.h15{height:53.752000pt;}
.h14{height:53.778667pt;}
.hf{height:54.106667pt;}
.h4{height:54.343750pt;}
.h2{height:54.598989pt;}
.hc{height:57.964375pt;}
.h8{height:58.399375pt;}
.h6{height:63.582187pt;}
.h5{height:72.277187pt;}
.h9{height:1122.546631pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:96.152000pt;}
.w4{width:112.818667pt;}
.w5{width:122.112000pt;}
.w7{width:122.258667pt;}
.w6{width:136.466667pt;}
.wc{width:150.573333pt;}
.w8{width:152.493333pt;}
.wb{width:157.946667pt;}
.w9{width:169.466667pt;}
.wa{width:180.973333pt;}
.w2{width:793.740000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x34{left:6.872000pt;}
.x39{left:10.866667pt;}
.x3a{left:16.640000pt;}
.x43{left:19.520000pt;}
.x3f{left:22.386667pt;}
.x40{left:26.880000pt;}
.x3c{left:34.226667pt;}
.x3e{left:74.560000pt;}
.x41{left:76.306667pt;}
.x1{left:113.472000pt;}
.x1c{left:132.332000pt;}
.x1d{left:136.346667pt;}
.xe{left:137.446667pt;}
.x1e{left:140.346667pt;}
.x3{left:141.786667pt;}
.x18{left:143.046667pt;}
.x2c{left:145.446667pt;}
.x19{left:147.866667pt;}
.xa{left:149.446667pt;}
.x4{left:151.226667pt;}
.xb{left:153.466667pt;}
.x2d{left:154.906667pt;}
.x22{left:157.466667pt;}
.x25{left:159.226667pt;}
.x7{left:160.486667pt;}
.x8{left:165.146667pt;}
.x3b{left:169.786667pt;}
.xc{left:198.246667pt;}
.xd{left:202.906667pt;}
.x35{left:210.920000pt;}
.x1a{left:256.846667pt;}
.x1b{left:266.146667pt;}
.x1f{left:267.746667pt;}
.x5{left:274.466667pt;}
.x26{left:275.566667pt;}
.x27{left:283.586667pt;}
.x2a{left:287.566667pt;}
.x3d{left:293.346667pt;}
.x2b{left:296.866667pt;}
.x9{left:305.506667pt;}
.x36{left:324.386667pt;}
.x42{left:333.186667pt;}
.x2e{left:362.606667pt;}
.x2f{left:371.906667pt;}
.x2{left:386.786667pt;}
.xf{left:390.786667pt;}
.x45{left:410.766667pt;}
.x46{left:420.066667pt;}
.x14{left:433.833333pt;}
.x6{left:434.813333pt;}
.x15{left:438.493333pt;}
.x37{left:447.306667pt;}
.x44{left:491.786667pt;}
.x28{left:516.873333pt;}
.x32{left:522.313333pt;}
.x29{left:526.173333pt;}
.x4a{left:530.333333pt;}
.x33{left:531.773333pt;}
.x20{left:560.393333pt;}
.x23{left:565.353333pt;}
.x21{left:569.693333pt;}
.x49{left:572.893333pt;}
.x24{left:574.813333pt;}
.x48{left:583.453333pt;}
.x38{left:584.426667pt;}
.x47{left:590.173333pt;}
.x30{left:604.593333pt;}
.x31{left:613.893333pt;}
.x12{left:635.953333pt;}
.x13{left:640.773333pt;}
.x10{left:682.353333pt;}
.x11{left:687.013333pt;}
.x16{left:708.273333pt;}
.x17{left:712.933333pt;}
}




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