
    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_80355de339bd5c78262baef8.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_b7836718b0191485f409f00a.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_6b305973632561a9b127b483.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_bef898e6ed9bfe5112e4aae2.woff')format("woff");}.ff4{font-family:ff4;line-height:0.708000;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_58e95bf108004ec689c431f1.woff')format("woff");}.ff5{font-family:ff5;line-height:0.925781;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_e4095bb26e2069ce207b9296.woff')format("woff");}.ff6{font-family:ff6;line-height:1.028000;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_680fb0ad551cfa875883569b.woff')format("woff");}.ff7{font-family:ff7;line-height:0.706000;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_6dc6a43a83a472f434c0b5dc.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_6a3416576c0d7b52703a546a.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_3272b26e0b7e5a2409c9659f.woff')format("woff");}.ffa{font-family:ffa;line-height:0.995605;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_c15035eca5d9caf8615579b6.woff')format("woff");}.ffb{font-family:ffb;line-height:0.925781;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_5dde686ed09f8a7fb0e25adf.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_fbc4b1a11527bb434a09c572.woff')format("woff");}.ffd{font-family:ffd;line-height:0.995605;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;}
.m1{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,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);}
.v7{vertical-align:-23.760000px;}
.v6{vertical-align:-21.780000px;}
.v3{vertical-align:-16.830000px;}
.v4{vertical-align:-12.000000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:21.780000px;}
.v2{vertical-align:23.760000px;}
.v1{vertical-align:180.000000px;}
.ls4d{letter-spacing:-7.200000px;}
.ls4f{letter-spacing:-3.168000px;}
.ls3a{letter-spacing:-2.808000px;}
.ls4a{letter-spacing:-2.160000px;}
.ls48{letter-spacing:-1.224000px;}
.ls44{letter-spacing:-1.152000px;}
.ls2d{letter-spacing:-1.080000px;}
.ls2c{letter-spacing:-1.008000px;}
.ls38{letter-spacing:-0.864000px;}
.ls21{letter-spacing:-0.792000px;}
.ls22{letter-spacing:-0.720000px;}
.ls1f{letter-spacing:-0.648000px;}
.ls20{letter-spacing:-0.576000px;}
.ls13{letter-spacing:-0.504000px;}
.ls19{letter-spacing:-0.432000px;}
.lsd{letter-spacing:-0.360000px;}
.ls4e{letter-spacing:-0.300000px;}
.ls46{letter-spacing:-0.288000px;}
.ls25{letter-spacing:-0.252000px;}
.ls2a{letter-spacing:-0.240000px;}
.ls23{letter-spacing:-0.216000px;}
.ls29{letter-spacing:-0.178500px;}
.ls14{letter-spacing:-0.144000px;}
.ls18{letter-spacing:-0.072000px;}
.ls9{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.010200px;}
.ls8{letter-spacing:0.072000px;}
.ls24{letter-spacing:0.096000px;}
.ls4b{letter-spacing:0.108000px;}
.ls12{letter-spacing:0.144000px;}
.ls33{letter-spacing:0.151200px;}
.ls1d{letter-spacing:0.162000px;}
.lsc{letter-spacing:0.216000px;}
.ls35{letter-spacing:0.237600px;}
.ls39{letter-spacing:0.277200px;}
.ls10{letter-spacing:0.288000px;}
.ls1e{letter-spacing:0.336000px;}
.ls3{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.378000px;}
.ls27{letter-spacing:0.384000px;}
.lsb{letter-spacing:0.432000px;}
.ls16{letter-spacing:0.487800px;}
.ls17{letter-spacing:0.504000px;}
.lsa{letter-spacing:0.576000px;}
.ls7{letter-spacing:0.648000px;}
.ls1b{letter-spacing:0.720000px;}
.ls1c{letter-spacing:0.792000px;}
.ls11{letter-spacing:0.864000px;}
.lsf{letter-spacing:1.008000px;}
.ls2b{letter-spacing:1.152000px;}
.ls4{letter-spacing:1.224000px;}
.ls49{letter-spacing:1.368000px;}
.ls3c{letter-spacing:1.440000px;}
.ls41{letter-spacing:1.512000px;}
.ls1a{letter-spacing:1.800000px;}
.ls51{letter-spacing:3.648000px;}
.ls1{letter-spacing:4.560000px;}
.ls50{letter-spacing:4.752000px;}
.ls42{letter-spacing:5.886000px;}
.ls2e{letter-spacing:6.480000px;}
.ls31{letter-spacing:6.804000px;}
.ls3d{letter-spacing:7.074000px;}
.ls43{letter-spacing:7.194000px;}
.ls26{letter-spacing:7.614000px;}
.ls30{letter-spacing:7.920000px;}
.ls32{letter-spacing:8.316000px;}
.ls6{letter-spacing:8.460000px;}
.ls3e{letter-spacing:8.646000px;}
.ls34{letter-spacing:10.584000px;}
.ls2{letter-spacing:10.592292px;}
.ls0{letter-spacing:10.740000px;}
.ls3f{letter-spacing:10.944000px;}
.ls40{letter-spacing:11.016000px;}
.ls47{letter-spacing:11.232000px;}
.ls36{letter-spacing:11.952000px;}
.ls4c{letter-spacing:12.096000px;}
.ls3b{letter-spacing:12.816000px;}
.ls45{letter-spacing:12.960000px;}
.ls2f{letter-spacing:13.546200px;}
.ls28{letter-spacing:14.153100px;}
.ls37{letter-spacing:14.386200px;}
.lse{letter-spacing:150.360000px;}
.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;}
}
.ws11{word-spacing:-75.180000px;}
.ws46{word-spacing:-26.862000px;}
.ws8b{word-spacing:-25.320000px;}
.ws45{word-spacing:-21.654000px;}
.ws68{word-spacing:-21.384000px;}
.ws1{word-spacing:-20.808000px;}
.ws71{word-spacing:-20.592000px;}
.ws1a{word-spacing:-20.232000px;}
.ws3d{word-spacing:-18.504000px;}
.ws6f{word-spacing:-18.432000px;}
.ws3e{word-spacing:-18.288000px;}
.ws70{word-spacing:-18.216000px;}
.ws1b{word-spacing:-18.144000px;}
.ws32{word-spacing:-18.072000px;}
.ws7b{word-spacing:-17.928000px;}
.ws81{word-spacing:-17.856000px;}
.ws3b{word-spacing:-17.784000px;}
.ws3c{word-spacing:-17.712000px;}
.ws24{word-spacing:-17.568000px;}
.ws67{word-spacing:-17.424000px;}
.ws25{word-spacing:-17.208000px;}
.ws66{word-spacing:-17.136000px;}
.ws23{word-spacing:-17.064000px;}
.ws65{word-spacing:-16.992000px;}
.ws83{word-spacing:-16.860000px;}
.ws3f{word-spacing:-16.776000px;}
.ws87{word-spacing:-14.666400px;}
.ws19{word-spacing:-14.162400px;}
.ws2f{word-spacing:-13.910400px;}
.ws33{word-spacing:-13.488000px;}
.ws47{word-spacing:-13.259400px;}
.ws54{word-spacing:-12.816000px;}
.ws59{word-spacing:-12.448800px;}
.ws8c{word-spacing:-12.336000px;}
.ws26{word-spacing:-12.144000px;}
.ws7c{word-spacing:-12.096000px;}
.ws57{word-spacing:-11.952000px;}
.ws49{word-spacing:-11.856000px;}
.ws74{word-spacing:-10.224000px;}
.ws48{word-spacing:-10.031700px;}
.ws5d{word-spacing:-8.646000px;}
.wsb{word-spacing:-8.460000px;}
.ws4f{word-spacing:-8.316000px;}
.ws4a{word-spacing:-7.920000px;}
.ws7e{word-spacing:-7.704000px;}
.ws36{word-spacing:-7.614000px;}
.ws7f{word-spacing:-7.488000px;}
.ws62{word-spacing:-7.194000px;}
.ws5c{word-spacing:-7.074000px;}
.ws4e{word-spacing:-6.804000px;}
.ws53{word-spacing:-6.480000px;}
.ws5a{word-spacing:-6.192000px;}
.ws61{word-spacing:-5.886000px;}
.ws6c{word-spacing:-5.832000px;}
.ws56{word-spacing:-4.824000px;}
.ws44{word-spacing:-4.248000px;}
.ws4d{word-spacing:-4.176000px;}
.ws7d{word-spacing:-3.096000px;}
.ws55{word-spacing:-3.024000px;}
.ws4b{word-spacing:-2.736000px;}
.ws1e{word-spacing:-1.800000px;}
.ws77{word-spacing:-1.368000px;}
.ws9{word-spacing:-1.224000px;}
.ws41{word-spacing:-1.152000px;}
.ws12{word-spacing:-1.008000px;}
.ws60{word-spacing:-0.936000px;}
.ws16{word-spacing:-0.864000px;}
.ws27{word-spacing:-0.792000px;}
.ws1f{word-spacing:-0.720000px;}
.wsd{word-spacing:-0.648000px;}
.ws8{word-spacing:-0.576000px;}
.ws22{word-spacing:-0.504000px;}
.wsa{word-spacing:-0.432000px;}
.ws38{word-spacing:-0.384000px;}
.ws7{word-spacing:-0.360000px;}
.ws2e{word-spacing:-0.336000px;}
.ws15{word-spacing:-0.288000px;}
.wsc{word-spacing:-0.216000px;}
.ws14{word-spacing:-0.144000px;}
.ws30{word-spacing:-0.096000px;}
.wsf{word-spacing:-0.072000px;}
.ws10{word-spacing:-0.060000px;}
.ws3{word-spacing:0.000000px;}
.ws1c{word-spacing:0.072000px;}
.ws18{word-spacing:0.144000px;}
.ws39{word-spacing:0.178500px;}
.ws31{word-spacing:0.192000px;}
.ws21{word-spacing:0.216000px;}
.ws3a{word-spacing:0.240000px;}
.ws52{word-spacing:0.288000px;}
.wse{word-spacing:0.360000px;}
.ws1d{word-spacing:0.432000px;}
.ws17{word-spacing:0.504000px;}
.ws29{word-spacing:0.576000px;}
.ws28{word-spacing:0.648000px;}
.ws64{word-spacing:0.720000px;}
.ws2b{word-spacing:0.792000px;}
.ws4c{word-spacing:0.864000px;}
.ws42{word-spacing:1.008000px;}
.ws43{word-spacing:1.080000px;}
.ws63{word-spacing:1.152000px;}
.ws5b{word-spacing:1.224000px;}
.ws5e{word-spacing:1.296000px;}
.ws8e{word-spacing:1.440000px;}
.ws4{word-spacing:1.800000px;}
.ws6d{word-spacing:1.944000px;}
.ws76{word-spacing:2.160000px;}
.ws86{word-spacing:2.400000px;}
.ws6{word-spacing:2.544000px;}
.ws2d{word-spacing:2.736000px;}
.ws50{word-spacing:2.808000px;}
.ws8d{word-spacing:2.928000px;}
.ws58{word-spacing:2.976000px;}
.ws89{word-spacing:3.168000px;}
.ws72{word-spacing:3.240000px;}
.ws5f{word-spacing:3.312000px;}
.ws2a{word-spacing:3.600000px;}
.ws8f{word-spacing:3.720000px;}
.ws88{word-spacing:3.816000px;}
.ws40{word-spacing:4.032000px;}
.ws80{word-spacing:4.176000px;}
.ws2{word-spacing:4.200000px;}
.ws78{word-spacing:4.392000px;}
.ws5{word-spacing:4.464000px;}
.ws51{word-spacing:4.536000px;}
.ws79{word-spacing:4.608000px;}
.ws7a{word-spacing:4.680000px;}
.ws34{word-spacing:4.824000px;}
.ws75{word-spacing:4.968000px;}
.ws35{word-spacing:5.040000px;}
.ws13{word-spacing:5.472000px;}
.ws6b{word-spacing:6.120000px;}
.ws37{word-spacing:6.336000px;}
.ws2c{word-spacing:6.768000px;}
.ws73{word-spacing:7.056000px;}
.ws8a{word-spacing:7.128000px;}
.ws84{word-spacing:7.200000px;}
.ws6e{word-spacing:8.352000px;}
.ws0{word-spacing:8.376000px;}
.ws20{word-spacing:8.856000px;}
.ws85{word-spacing:8.928000px;}
.ws69{word-spacing:9.432000px;}
.ws6a{word-spacing:10.440000px;}
.ws82{word-spacing:17.790000px;}
._0{margin-left:-940.386000px;}
._13{margin-left:-22.812000px;}
._18{margin-left:-14.797200px;}
._1b{margin-left:-13.735200px;}
._4{margin-left:-11.928000px;}
._11{margin-left:-10.005600px;}
._16{margin-left:-8.268000px;}
._c{margin-left:-7.044000px;}
._1{margin-left:-5.964000px;}
._e{margin-left:-4.096800px;}
._7{margin-left:-2.844000px;}
._3{margin-left:-1.248000px;}
._2{width:1.878000px;}
._5{width:3.756000px;}
._9{width:4.951200px;}
._8{width:6.334800px;}
._d{width:7.342800px;}
._6{width:8.400000px;}
._a{width:10.262400px;}
._b{width:11.310000px;}
._f{width:12.630000px;}
._17{width:13.796100px;}
._14{width:15.422400px;}
._15{width:16.498800px;}
._1a{width:19.712400px;}
._19{width:21.614400px;}
._10{width:31.646100px;}
._1e{width:68.040000px;}
._20{width:94.620000px;}
._22{width:134.508000px;}
._23{width:140.400000px;}
._24{width:174.846000px;}
._21{width:185.706000px;}
._12{width:201.564000px;}
._25{width:204.906000px;}
._26{width:219.384000px;}
._27{width:248.904000px;}
._1c{width:283.950000px;}
._2c{width:342.522000px;}
._2d{width:400.662000px;}
._1d{width:442.140000px;}
._1f{width:444.402000px;}
._2a{width:455.682000px;}
._2b{width:462.420000px;}
._29{width:482.400000px;}
._28{width:484.620000px;}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:33.600000px;}
.fs6{font-size:35.700000px;}
.fs9{font-size:46.200000px;}
.fs3{font-size:48.000000px;}
.fs5{font-size:50.400000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.fs4{font-size:423.828000px;}
.y0{bottom:0.000000px;}
.y1d{bottom:55.500000px;}
.y1e{bottom:58.500000px;}
.y1{bottom:72.000000px;}
.y136{bottom:116.988300px;}
.yd1{bottom:116.999700px;}
.yb4{bottom:116.999850px;}
.y8f{bottom:117.000000px;}
.y1a7{bottom:117.000150px;}
.y69{bottom:117.011700px;}
.y42{bottom:117.144000px;}
.y112{bottom:117.455700px;}
.y1ae{bottom:118.116000px;}
.y1de{bottom:119.994450px;}
.y1c{bottom:121.207500px;}
.y181{bottom:128.218500px;}
.y68{bottom:131.555700px;}
.yd0{bottom:131.999700px;}
.yb3{bottom:131.999850px;}
.yf1{bottom:132.000000px;}
.y1ad{bottom:133.116000px;}
.y8e{bottom:136.207500px;}
.y1a6{bottom:136.207650px;}
.y135{bottom:138.894300px;}
.y1dd{bottom:138.894450px;}
.y41{bottom:139.500000px;}
.y111{bottom:140.099700px;}
.yf0{bottom:147.000000px;}
.y1ac{bottom:148.116000px;}
.y67{bottom:150.307200px;}
.ycf{bottom:151.207200px;}
.yb2{bottom:151.207350px;}
.y162{bottom:151.207500px;}
.y8d{bottom:154.500000px;}
.y180{bottom:155.203500px;}
.y1dc{bottom:157.794450px;}
.y134{bottom:160.800300px;}
.y40{bottom:162.000000px;}
.y110{bottom:162.749700px;}
.y1ab{bottom:163.116000px;}
.y66{bottom:168.155700px;}
.y1b{bottom:168.968550px;}
.yce{bottom:169.499700px;}
.yb1{bottom:169.499850px;}
.y8c{bottom:169.500000px;}
.y1a5{bottom:176.226150px;}
.y1db{bottom:176.694450px;}
.y1aa{bottom:178.116000px;}
.y143{bottom:180.234000px;}
.yef{bottom:181.207500px;}
.y17f{bottom:182.188500px;}
.y133{bottom:182.700300px;}
.yb0{bottom:184.499850px;}
.y3f{bottom:184.500000px;}
.y65{bottom:186.907200px;}
.ycd{bottom:188.707200px;}
.y8b{bottom:188.707500px;}
.y1a{bottom:191.468550px;}
.y1a9{bottom:193.116000px;}
.y1da{bottom:195.594450px;}
.y10f{bottom:196.835700px;}
.y1a4{bottom:198.726150px;}
.yaf{bottom:199.499850px;}
.y142{bottom:203.040000px;}
.y3e{bottom:207.000000px;}
.y1a8{bottom:208.116000px;}
.y64{bottom:208.957200px;}
.y17e{bottom:209.173500px;}
.y8a{bottom:211.207500px;}
.y19{bottom:213.968550px;}
.y1d9{bottom:214.494450px;}
.yae{bottom:218.707350px;}
.y1a3{bottom:220.182150px;}
.yee{bottom:222.024000px;}
.ycc{bottom:224.999700px;}
.y141{bottom:225.846000px;}
.y132{bottom:226.398300px;}
.y63{bottom:226.811700px;}
.y3d{bottom:229.500000px;}
.y161{bottom:230.100000px;}
.y1d8{bottom:233.394450px;}
.y17d{bottom:236.158500px;}
.y18{bottom:236.468550px;}
.yad{bottom:236.999850px;}
.y62{bottom:241.355700px;}
.y1a2{bottom:241.638150px;}
.y10e{bottom:242.285700px;}
.yed{bottom:243.768000px;}
.ycb{bottom:246.599700px;}
.y131{bottom:248.304300px;}
.y140{bottom:248.652000px;}
.yac{bottom:251.999850px;}
.y3c{bottom:252.000000px;}
.y160{bottom:252.600000px;}
.y89{bottom:253.512000px;}
.y1d7{bottom:258.822000px;}
.y17{bottom:258.968550px;}
.y61{bottom:260.107200px;}
.y1a1{bottom:263.094150px;}
.y17c{bottom:263.143500px;}
.y10d{bottom:264.929700px;}
.yec{bottom:265.512000px;}
.yca{bottom:268.199700px;}
.y130{bottom:270.210300px;}
.yab{bottom:271.207350px;}
.y13f{bottom:271.458000px;}
.y3b{bottom:274.500000px;}
.y15f{bottom:275.100000px;}
.y88{bottom:275.256000px;}
.y1d6{bottom:276.966000px;}
.y16{bottom:281.468550px;}
.y1a0{bottom:284.370000px;}
.yeb{bottom:287.256000px;}
.y10c{bottom:287.573700px;}
.yc9{bottom:289.799700px;}
.y17b{bottom:290.128500px;}
.y12f{bottom:292.116300px;}
.y13e{bottom:294.264000px;}
.y3a{bottom:297.000000px;}
.y87{bottom:297.054000px;}
.y15e{bottom:297.600000px;}
.y60{bottom:300.149700px;}
.y19f{bottom:305.826000px;}
.yea{bottom:309.000000px;}
.yaa{bottom:310.050000px;}
.y10b{bottom:310.217700px;}
.yc8{bottom:311.399700px;}
.y12e{bottom:314.022300px;}
.y13d{bottom:317.070000px;}
.y17a{bottom:317.113500px;}
.y86{bottom:318.798000px;}
.y39{bottom:319.500000px;}
.y15d{bottom:320.100000px;}
.y1d5{bottom:322.266000px;}
.y5f{bottom:323.099700px;}
.y15{bottom:326.468550px;}
.y19e{bottom:327.282000px;}
.ya9{bottom:332.100000px;}
.y10a{bottom:332.861700px;}
.yc7{bottom:332.999700px;}
.y1f7{bottom:334.500000px;}
.y12d{bottom:335.928300px;}
.y1d4{bottom:337.410000px;}
.y13c{bottom:339.876000px;}
.y85{bottom:340.542000px;}
.ye9{bottom:341.298000px;}
.y38{bottom:342.000000px;}
.y15c{bottom:342.600000px;}
.y179{bottom:344.098500px;}
.y5e{bottom:344.699700px;}
.y19d{bottom:348.738000px;}
.y14{bottom:348.968550px;}
.y1d3{bottom:352.554000px;}
.y1f6{bottom:353.250000px;}
.ya8{bottom:354.150000px;}
.y109{bottom:355.505700px;}
.y12c{bottom:357.834300px;}
.y84{bottom:362.286000px;}
.y13b{bottom:362.682000px;}
.ye8{bottom:363.042000px;}
.y37{bottom:364.500000px;}
.y15b{bottom:365.100000px;}
.y5d{bottom:366.299700px;}
.y1d2{bottom:367.698000px;}
.y19c{bottom:370.194000px;}
.y178{bottom:371.083500px;}
.y13{bottom:371.468550px;}
.yc6{bottom:376.199700px;}
.ya7{bottom:376.200000px;}
.y108{bottom:378.149700px;}
.y12b{bottom:379.740300px;}
.y1d1{bottom:382.842000px;}
.y83{bottom:384.030000px;}
.ye7{bottom:384.786000px;}
.y13a{bottom:385.488000px;}
.y36{bottom:387.000000px;}
.y15a{bottom:387.600000px;}
.y5c{bottom:387.899700px;}
.y19b{bottom:391.650000px;}
.y12{bottom:393.968550px;}
.yc5{bottom:397.799700px;}
.y1d0{bottom:397.998000px;}
.y177{bottom:398.068500px;}
.ya6{bottom:398.250000px;}
.y12a{bottom:401.646300px;}
.y82{bottom:405.774000px;}
.ye6{bottom:406.530000px;}
.y139{bottom:408.294000px;}
.y5b{bottom:409.499700px;}
.y35{bottom:409.500000px;}
.y159{bottom:410.100000px;}
.y107{bottom:412.325700px;}
.y19a{bottom:413.106000px;}
.y1cf{bottom:413.142000px;}
.y11{bottom:416.468550px;}
.yc4{bottom:419.399700px;}
.ya5{bottom:420.300000px;}
.y129{bottom:423.552300px;}
.y176{bottom:425.053500px;}
.y81{bottom:427.518000px;}
.y1f5{bottom:428.250000px;}
.ye5{bottom:428.274000px;}
.y1ce{bottom:428.286000px;}
.y5a{bottom:431.099700px;}
.y138{bottom:431.100000px;}
.y34{bottom:432.000000px;}
.y158{bottom:432.600000px;}
.y199{bottom:434.562000px;}
.y106{bottom:434.681700px;}
.y10{bottom:438.968550px;}
.yc3{bottom:440.999700px;}
.ya4{bottom:442.350000px;}
.y1cd{bottom:443.430000px;}
.y128{bottom:445.458300px;}
.y1f4{bottom:447.000000px;}
.y80{bottom:449.262000px;}
.ye4{bottom:450.018000px;}
.y175{bottom:452.038500px;}
.y59{bottom:452.699700px;}
.y137{bottom:453.900000px;}
.y33{bottom:454.500000px;}
.y157{bottom:455.100000px;}
.y198{bottom:456.018000px;}
.y105{bottom:457.037700px;}
.y1cc{bottom:458.574000px;}
.yf{bottom:461.468550px;}
.yc2{bottom:462.599700px;}
.ya3{bottom:464.400000px;}
.y1f3{bottom:465.750000px;}
.y127{bottom:467.364300px;}
.y7f{bottom:471.006000px;}
.ye3{bottom:471.762000px;}
.y1cb{bottom:473.730000px;}
.y58{bottom:474.299700px;}
.y32{bottom:477.000000px;}
.y197{bottom:477.474000px;}
.y174{bottom:479.023500px;}
.y104{bottom:479.393700px;}
.ye{bottom:483.968550px;}
.yc1{bottom:484.199700px;}
.ya2{bottom:486.450000px;}
.y1ca{bottom:488.874000px;}
.y126{bottom:489.270300px;}
.y7e{bottom:492.834000px;}
.ye2{bottom:493.506000px;}
.y1f2{bottom:495.750000px;}
.y57{bottom:495.899700px;}
.y196{bottom:498.930000px;}
.y31{bottom:499.500000px;}
.y156{bottom:500.100000px;}
.y103{bottom:501.749700px;}
.y1c9{bottom:504.018000px;}
.yc0{bottom:505.799700px;}
.y173{bottom:506.008500px;}
.yd{bottom:506.468550px;}
.ya1{bottom:508.500000px;}
.y125{bottom:511.176300px;}
.y7d{bottom:514.578000px;}
.ye1{bottom:515.250000px;}
.y56{bottom:517.499700px;}
.y1c8{bottom:519.162000px;}
.y195{bottom:520.386000px;}
.y30{bottom:522.000000px;}
.y155{bottom:522.600000px;}
.ybf{bottom:527.400000px;}
.yc{bottom:528.968550px;}
.ya0{bottom:530.550000px;}
.y172{bottom:532.993500px;}
.y124{bottom:533.082300px;}
.y1c7{bottom:534.306000px;}
.y102{bottom:535.607700px;}
.y7c{bottom:536.322000px;}
.y1f1{bottom:537.000000px;}
.y55{bottom:539.099700px;}
.y194{bottom:541.842000px;}
.y2f{bottom:544.500000px;}
.y154{bottom:545.100000px;}
.ye0{bottom:547.548000px;}
.ybe{bottom:549.000000px;}
.y1c6{bottom:549.462000px;}
.yb{bottom:551.468550px;}
.y9f{bottom:552.600000px;}
.y123{bottom:554.988300px;}
.y1f0{bottom:555.750000px;}
.y101{bottom:557.963700px;}
.y7b{bottom:558.066000px;}
.y171{bottom:559.978500px;}
.y54{bottom:560.699700px;}
.y193{bottom:563.298000px;}
.y1c5{bottom:564.606000px;}
.y2e{bottom:567.000000px;}
.y153{bottom:567.600000px;}
.ydf{bottom:569.292000px;}
.ybd{bottom:570.600000px;}
.ya{bottom:573.968550px;}
.y1ef{bottom:574.500000px;}
.y9e{bottom:574.650000px;}
.y122{bottom:576.894300px;}
.y1c4{bottom:579.750000px;}
.y7a{bottom:579.810000px;}
.y100{bottom:580.319700px;}
.y53{bottom:582.299700px;}
.y192{bottom:584.754000px;}
.y170{bottom:586.963500px;}
.y2d{bottom:589.500000px;}
.y152{bottom:590.100000px;}
.yde{bottom:591.036000px;}
.ybc{bottom:592.200000px;}
.y1ee{bottom:593.250000px;}
.y1c3{bottom:594.894000px;}
.y8{bottom:596.468550px;}
.y121{bottom:598.800300px;}
.y79{bottom:601.554000px;}
.yff{bottom:602.675700px;}
.y52{bottom:603.899700px;}
.y16f{bottom:605.713500px;}
.y191{bottom:606.210000px;}
.y1c2{bottom:610.038000px;}
.y2c{bottom:612.000000px;}
.y151{bottom:612.600000px;}
.ydd{bottom:612.780000px;}
.ybb{bottom:613.800000px;}
.y9d{bottom:618.750000px;}
.y9{bottom:618.968550px;}
.y120{bottom:620.700300px;}
.y78{bottom:623.298000px;}
.yfe{bottom:625.031700px;}
.y1c1{bottom:625.194000px;}
.y51{bottom:625.499700px;}
.y190{bottom:627.666000px;}
.y1ed{bottom:630.750000px;}
.y2b{bottom:634.500000px;}
.ydc{bottom:634.524000px;}
.yba{bottom:635.400000px;}
.y1c0{bottom:640.338000px;}
.y9c{bottom:640.800000px;}
.y77{bottom:645.042000px;}
.y16e{bottom:645.449850px;}
.y50{bottom:647.099700px;}
.yfd{bottom:647.387700px;}
.y18f{bottom:649.122000px;}
.y1ec{bottom:649.500000px;}
.y1bf{bottom:655.482000px;}
.ydb{bottom:656.268000px;}
.y2a{bottom:657.000000px;}
.y150{bottom:657.606000px;}
.y9b{bottom:662.850000px;}
.y11f{bottom:664.728000px;}
.y76{bottom:666.786000px;}
.y1eb{bottom:668.250000px;}
.y4f{bottom:668.699700px;}
.yfc{bottom:669.743700px;}
.y18e{bottom:670.578000px;}
.y1be{bottom:670.626000px;}
.yda{bottom:678.012000px;}
.yb9{bottom:678.600000px;}
.y29{bottom:679.500000px;}
.y14f{bottom:680.106000px;}
.y9a{bottom:684.900000px;}
.y1bd{bottom:685.770000px;}
.y11e{bottom:686.634000px;}
.y1ea{bottom:687.000000px;}
.y75{bottom:688.530000px;}
.y4e{bottom:690.299700px;}
.y16d{bottom:690.510000px;}
.y18d{bottom:692.034000px;}
.yfb{bottom:692.099700px;}
.yd9{bottom:699.756000px;}
.yb8{bottom:700.200000px;}
.y1bc{bottom:700.926000px;}
.y28{bottom:702.000000px;}
.y14e{bottom:702.606000px;}
.y1e9{bottom:705.750000px;}
.y99{bottom:706.950000px;}
.y11d{bottom:708.540000px;}
.y7{bottom:708.968550px;}
.y74{bottom:710.274000px;}
.y4d{bottom:711.899700px;}
.y18c{bottom:713.490000px;}
.y16c{bottom:714.054000px;}
.y1bb{bottom:716.070000px;}
.yd8{bottom:721.500000px;}
.yb7{bottom:721.800000px;}
.y27{bottom:724.500000px;}
.y14d{bottom:725.106000px;}
.yfa{bottom:725.993700px;}
.y6{bottom:727.718550px;}
.y98{bottom:729.000000px;}
.y11c{bottom:730.446000px;}
.y1ba{bottom:731.214000px;}
.y73{bottom:732.018000px;}
.y4c{bottom:733.499700px;}
.y18b{bottom:734.946000px;}
.y16b{bottom:737.598000px;}
.y1e8{bottom:743.250000px;}
.yb6{bottom:743.400000px;}
.y1b9{bottom:746.358000px;}
.y26{bottom:747.000000px;}
.y14c{bottom:747.606000px;}
.yf9{bottom:748.349700px;}
.y97{bottom:751.050000px;}
.y11b{bottom:752.352000px;}
.yd7{bottom:753.756000px;}
.y72{bottom:753.762000px;}
.y4b{bottom:755.100000px;}
.y18a{bottom:756.402000px;}
.y16a{bottom:761.142000px;}
.y1b8{bottom:761.502000px;}
.y1e7{bottom:762.000000px;}
.yb5{bottom:765.000000px;}
.y25{bottom:769.500000px;}
.y5{bottom:769.854300px;}
.y14b{bottom:770.106000px;}
.yf8{bottom:770.699700px;}
.y96{bottom:773.100000px;}
.y11a{bottom:774.258000px;}
.yd6{bottom:775.500000px;}
.y71{bottom:775.506000px;}
.y1b7{bottom:776.658000px;}
.y4a{bottom:776.700000px;}
.y189{bottom:777.858000px;}
.y1e6{bottom:780.750000px;}
.y169{bottom:784.686000px;}
.y1b6{bottom:791.802000px;}
.y24{bottom:792.000000px;}
.y4{bottom:792.354300px;}
.y14a{bottom:792.606000px;}
.y95{bottom:795.150000px;}
.y119{bottom:796.164000px;}
.yd5{bottom:797.250000px;}
.y70{bottom:797.274000px;}
.y49{bottom:798.300000px;}
.y188{bottom:799.314000px;}
.y1e5{bottom:799.500000px;}
.y168{bottom:808.230000px;}
.y1b5{bottom:813.330000px;}
.y23{bottom:814.500000px;}
.y149{bottom:815.106000px;}
.yf7{bottom:815.376000px;}
.y94{bottom:817.199850px;}
.y118{bottom:818.070000px;}
.y1e4{bottom:818.250000px;}
.y6f{bottom:819.018000px;}
.y48{bottom:819.900000px;}
.y187{bottom:820.770000px;}
.y167{bottom:831.774000px;}
.y22{bottom:837.000000px;}
.y148{bottom:837.606000px;}
.yf6{bottom:837.732000px;}
.y117{bottom:839.976000px;}
.y6e{bottom:840.762000px;}
.yd4{bottom:840.768000px;}
.y47{bottom:841.500000px;}
.y186{bottom:842.226000px;}
.y166{bottom:855.318000px;}
.y1e3{bottom:855.750000px;}
.y1b4{bottom:858.630000px;}
.y3{bottom:859.500000px;}
.yf5{bottom:860.088000px;}
.y147{bottom:860.106000px;}
.y93{bottom:861.300000px;}
.y116{bottom:861.882000px;}
.y6d{bottom:862.506000px;}
.yd3{bottom:862.512000px;}
.y46{bottom:863.100000px;}
.y185{bottom:863.682000px;}
.y1b3{bottom:873.774000px;}
.y1e2{bottom:874.500000px;}
.y165{bottom:878.862000px;}
.y21{bottom:882.000000px;}
.yf4{bottom:882.444000px;}
.y146{bottom:882.606000px;}
.y92{bottom:883.350000px;}
.y115{bottom:883.788000px;}
.y6c{bottom:884.250000px;}
.yd2{bottom:884.256000px;}
.y45{bottom:884.700000px;}
.y184{bottom:885.138000px;}
.y1b2{bottom:888.918000px;}
.y2{bottom:889.500000px;}
.y1e1{bottom:893.250000px;}
.y164{bottom:902.406000px;}
.y1b1{bottom:904.062000px;}
.y20{bottom:904.500000px;}
.y145{bottom:905.106000px;}
.y91{bottom:905.400000px;}
.y114{bottom:905.694000px;}
.y6b{bottom:906.000000px;}
.y44{bottom:906.300000px;}
.y183{bottom:906.594000px;}
.yf3{bottom:910.740000px;}
.y1e0{bottom:912.000000px;}
.y1b0{bottom:919.206000px;}
.y163{bottom:925.950000px;}
.y1f{bottom:927.000000px;}
.yf2{bottom:927.150000px;}
.y144{bottom:927.300000px;}
.y90{bottom:927.450000px;}
.y113{bottom:927.600000px;}
.y6a{bottom:927.750000px;}
.y43{bottom:927.900000px;}
.y182{bottom:928.050000px;}
.y1df{bottom:930.750000px;}
.y1af{bottom:934.350000px;}
.h9{height:30.313623px;}
.h13{height:37.376719px;}
.h18{height:39.072000px;}
.h1{height:39.990234px;}
.hd{height:40.757812px;}
.hb{height:41.396484px;}
.h3{height:42.000000px;}
.ha{height:45.585938px;}
.h12{height:45.852539px;}
.h11{height:47.988281px;}
.h16{height:48.840000px;}
.h4{height:49.675781px;}
.h5{height:50.947266px;}
.h14{height:54.703125px;}
.h7{height:61.136719px;}
.he{height:66.219703px;}
.hf{height:66.339703px;}
.h15{height:66.531703px;}
.hc{height:66.554503px;}
.h10{height:66.555103px;}
.h8{height:66.555703px;}
.h17{height:67.276303px;}
.h2{height:101.894531px;}
.h6{height:296.679600px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x5{left:67.500000px;}
.x8{left:82.386000px;}
.x2{left:112.500000px;}
.xa{left:117.127050px;}
.x4{left:127.381950px;}
.x6{left:134.985000px;}
.x9{left:144.396000px;}
.x3{left:153.398550px;}
.x10{left:180.525600px;}
.x7{left:262.545000px;}
.xb{left:326.722050px;}
.xe{left:582.648900px;}
.xf{left:585.285600px;}
.xc{left:589.740600px;}
.xd{left:592.377300px;}
.x1{left:635.390550px;}
@media print{
.v7{vertical-align:-21.120000pt;}
.v6{vertical-align:-19.360000pt;}
.v3{vertical-align:-14.960000pt;}
.v4{vertical-align:-10.666667pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:19.360000pt;}
.v2{vertical-align:21.120000pt;}
.v1{vertical-align:160.000000pt;}
.ls4d{letter-spacing:-6.400000pt;}
.ls4f{letter-spacing:-2.816000pt;}
.ls3a{letter-spacing:-2.496000pt;}
.ls4a{letter-spacing:-1.920000pt;}
.ls48{letter-spacing:-1.088000pt;}
.ls44{letter-spacing:-1.024000pt;}
.ls2d{letter-spacing:-0.960000pt;}
.ls2c{letter-spacing:-0.896000pt;}
.ls38{letter-spacing:-0.768000pt;}
.ls21{letter-spacing:-0.704000pt;}
.ls22{letter-spacing:-0.640000pt;}
.ls1f{letter-spacing:-0.576000pt;}
.ls20{letter-spacing:-0.512000pt;}
.ls13{letter-spacing:-0.448000pt;}
.ls19{letter-spacing:-0.384000pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls4e{letter-spacing:-0.266667pt;}
.ls46{letter-spacing:-0.256000pt;}
.ls25{letter-spacing:-0.224000pt;}
.ls2a{letter-spacing:-0.213333pt;}
.ls23{letter-spacing:-0.192000pt;}
.ls29{letter-spacing:-0.158667pt;}
.ls14{letter-spacing:-0.128000pt;}
.ls18{letter-spacing:-0.064000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.009067pt;}
.ls8{letter-spacing:0.064000pt;}
.ls24{letter-spacing:0.085333pt;}
.ls4b{letter-spacing:0.096000pt;}
.ls12{letter-spacing:0.128000pt;}
.ls33{letter-spacing:0.134400pt;}
.ls1d{letter-spacing:0.144000pt;}
.lsc{letter-spacing:0.192000pt;}
.ls35{letter-spacing:0.211200pt;}
.ls39{letter-spacing:0.246400pt;}
.ls10{letter-spacing:0.256000pt;}
.ls1e{letter-spacing:0.298667pt;}
.ls3{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.336000pt;}
.ls27{letter-spacing:0.341333pt;}
.lsb{letter-spacing:0.384000pt;}
.ls16{letter-spacing:0.433600pt;}
.ls17{letter-spacing:0.448000pt;}
.lsa{letter-spacing:0.512000pt;}
.ls7{letter-spacing:0.576000pt;}
.ls1b{letter-spacing:0.640000pt;}
.ls1c{letter-spacing:0.704000pt;}
.ls11{letter-spacing:0.768000pt;}
.lsf{letter-spacing:0.896000pt;}
.ls2b{letter-spacing:1.024000pt;}
.ls4{letter-spacing:1.088000pt;}
.ls49{letter-spacing:1.216000pt;}
.ls3c{letter-spacing:1.280000pt;}
.ls41{letter-spacing:1.344000pt;}
.ls1a{letter-spacing:1.600000pt;}
.ls51{letter-spacing:3.242667pt;}
.ls1{letter-spacing:4.053333pt;}
.ls50{letter-spacing:4.224000pt;}
.ls42{letter-spacing:5.232000pt;}
.ls2e{letter-spacing:5.760000pt;}
.ls31{letter-spacing:6.048000pt;}
.ls3d{letter-spacing:6.288000pt;}
.ls43{letter-spacing:6.394667pt;}
.ls26{letter-spacing:6.768000pt;}
.ls30{letter-spacing:7.040000pt;}
.ls32{letter-spacing:7.392000pt;}
.ls6{letter-spacing:7.520000pt;}
.ls3e{letter-spacing:7.685333pt;}
.ls34{letter-spacing:9.408000pt;}
.ls2{letter-spacing:9.415371pt;}
.ls0{letter-spacing:9.546667pt;}
.ls3f{letter-spacing:9.728000pt;}
.ls40{letter-spacing:9.792000pt;}
.ls47{letter-spacing:9.984000pt;}
.ls36{letter-spacing:10.624000pt;}
.ls4c{letter-spacing:10.752000pt;}
.ls3b{letter-spacing:11.392000pt;}
.ls45{letter-spacing:11.520000pt;}
.ls2f{letter-spacing:12.041067pt;}
.ls28{letter-spacing:12.580533pt;}
.ls37{letter-spacing:12.787733pt;}
.lse{letter-spacing:133.653333pt;}
.ws11{word-spacing:-66.826667pt;}
.ws46{word-spacing:-23.877333pt;}
.ws8b{word-spacing:-22.506667pt;}
.ws45{word-spacing:-19.248000pt;}
.ws68{word-spacing:-19.008000pt;}
.ws1{word-spacing:-18.496000pt;}
.ws71{word-spacing:-18.304000pt;}
.ws1a{word-spacing:-17.984000pt;}
.ws3d{word-spacing:-16.448000pt;}
.ws6f{word-spacing:-16.384000pt;}
.ws3e{word-spacing:-16.256000pt;}
.ws70{word-spacing:-16.192000pt;}
.ws1b{word-spacing:-16.128000pt;}
.ws32{word-spacing:-16.064000pt;}
.ws7b{word-spacing:-15.936000pt;}
.ws81{word-spacing:-15.872000pt;}
.ws3b{word-spacing:-15.808000pt;}
.ws3c{word-spacing:-15.744000pt;}
.ws24{word-spacing:-15.616000pt;}
.ws67{word-spacing:-15.488000pt;}
.ws25{word-spacing:-15.296000pt;}
.ws66{word-spacing:-15.232000pt;}
.ws23{word-spacing:-15.168000pt;}
.ws65{word-spacing:-15.104000pt;}
.ws83{word-spacing:-14.986667pt;}
.ws3f{word-spacing:-14.912000pt;}
.ws87{word-spacing:-13.036800pt;}
.ws19{word-spacing:-12.588800pt;}
.ws2f{word-spacing:-12.364800pt;}
.ws33{word-spacing:-11.989333pt;}
.ws47{word-spacing:-11.786133pt;}
.ws54{word-spacing:-11.392000pt;}
.ws59{word-spacing:-11.065600pt;}
.ws8c{word-spacing:-10.965333pt;}
.ws26{word-spacing:-10.794667pt;}
.ws7c{word-spacing:-10.752000pt;}
.ws57{word-spacing:-10.624000pt;}
.ws49{word-spacing:-10.538667pt;}
.ws74{word-spacing:-9.088000pt;}
.ws48{word-spacing:-8.917067pt;}
.ws5d{word-spacing:-7.685333pt;}
.wsb{word-spacing:-7.520000pt;}
.ws4f{word-spacing:-7.392000pt;}
.ws4a{word-spacing:-7.040000pt;}
.ws7e{word-spacing:-6.848000pt;}
.ws36{word-spacing:-6.768000pt;}
.ws7f{word-spacing:-6.656000pt;}
.ws62{word-spacing:-6.394667pt;}
.ws5c{word-spacing:-6.288000pt;}
.ws4e{word-spacing:-6.048000pt;}
.ws53{word-spacing:-5.760000pt;}
.ws5a{word-spacing:-5.504000pt;}
.ws61{word-spacing:-5.232000pt;}
.ws6c{word-spacing:-5.184000pt;}
.ws56{word-spacing:-4.288000pt;}
.ws44{word-spacing:-3.776000pt;}
.ws4d{word-spacing:-3.712000pt;}
.ws7d{word-spacing:-2.752000pt;}
.ws55{word-spacing:-2.688000pt;}
.ws4b{word-spacing:-2.432000pt;}
.ws1e{word-spacing:-1.600000pt;}
.ws77{word-spacing:-1.216000pt;}
.ws9{word-spacing:-1.088000pt;}
.ws41{word-spacing:-1.024000pt;}
.ws12{word-spacing:-0.896000pt;}
.ws60{word-spacing:-0.832000pt;}
.ws16{word-spacing:-0.768000pt;}
.ws27{word-spacing:-0.704000pt;}
.ws1f{word-spacing:-0.640000pt;}
.wsd{word-spacing:-0.576000pt;}
.ws8{word-spacing:-0.512000pt;}
.ws22{word-spacing:-0.448000pt;}
.wsa{word-spacing:-0.384000pt;}
.ws38{word-spacing:-0.341333pt;}
.ws7{word-spacing:-0.320000pt;}
.ws2e{word-spacing:-0.298667pt;}
.ws15{word-spacing:-0.256000pt;}
.wsc{word-spacing:-0.192000pt;}
.ws14{word-spacing:-0.128000pt;}
.ws30{word-spacing:-0.085333pt;}
.wsf{word-spacing:-0.064000pt;}
.ws10{word-spacing:-0.053333pt;}
.ws3{word-spacing:0.000000pt;}
.ws1c{word-spacing:0.064000pt;}
.ws18{word-spacing:0.128000pt;}
.ws39{word-spacing:0.158667pt;}
.ws31{word-spacing:0.170667pt;}
.ws21{word-spacing:0.192000pt;}
.ws3a{word-spacing:0.213333pt;}
.ws52{word-spacing:0.256000pt;}
.wse{word-spacing:0.320000pt;}
.ws1d{word-spacing:0.384000pt;}
.ws17{word-spacing:0.448000pt;}
.ws29{word-spacing:0.512000pt;}
.ws28{word-spacing:0.576000pt;}
.ws64{word-spacing:0.640000pt;}
.ws2b{word-spacing:0.704000pt;}
.ws4c{word-spacing:0.768000pt;}
.ws42{word-spacing:0.896000pt;}
.ws43{word-spacing:0.960000pt;}
.ws63{word-spacing:1.024000pt;}
.ws5b{word-spacing:1.088000pt;}
.ws5e{word-spacing:1.152000pt;}
.ws8e{word-spacing:1.280000pt;}
.ws4{word-spacing:1.600000pt;}
.ws6d{word-spacing:1.728000pt;}
.ws76{word-spacing:1.920000pt;}
.ws86{word-spacing:2.133333pt;}
.ws6{word-spacing:2.261333pt;}
.ws2d{word-spacing:2.432000pt;}
.ws50{word-spacing:2.496000pt;}
.ws8d{word-spacing:2.602667pt;}
.ws58{word-spacing:2.645333pt;}
.ws89{word-spacing:2.816000pt;}
.ws72{word-spacing:2.880000pt;}
.ws5f{word-spacing:2.944000pt;}
.ws2a{word-spacing:3.200000pt;}
.ws8f{word-spacing:3.306667pt;}
.ws88{word-spacing:3.392000pt;}
.ws40{word-spacing:3.584000pt;}
.ws80{word-spacing:3.712000pt;}
.ws2{word-spacing:3.733333pt;}
.ws78{word-spacing:3.904000pt;}
.ws5{word-spacing:3.968000pt;}
.ws51{word-spacing:4.032000pt;}
.ws79{word-spacing:4.096000pt;}
.ws7a{word-spacing:4.160000pt;}
.ws34{word-spacing:4.288000pt;}
.ws75{word-spacing:4.416000pt;}
.ws35{word-spacing:4.480000pt;}
.ws13{word-spacing:4.864000pt;}
.ws6b{word-spacing:5.440000pt;}
.ws37{word-spacing:5.632000pt;}
.ws2c{word-spacing:6.016000pt;}
.ws73{word-spacing:6.272000pt;}
.ws8a{word-spacing:6.336000pt;}
.ws84{word-spacing:6.400000pt;}
.ws6e{word-spacing:7.424000pt;}
.ws0{word-spacing:7.445333pt;}
.ws20{word-spacing:7.872000pt;}
.ws85{word-spacing:7.936000pt;}
.ws69{word-spacing:8.384000pt;}
.ws6a{word-spacing:9.280000pt;}
.ws82{word-spacing:15.813333pt;}
._0{margin-left:-835.898667pt;}
._13{margin-left:-20.277333pt;}
._18{margin-left:-13.153067pt;}
._1b{margin-left:-12.209067pt;}
._4{margin-left:-10.602667pt;}
._11{margin-left:-8.893867pt;}
._16{margin-left:-7.349333pt;}
._c{margin-left:-6.261333pt;}
._1{margin-left:-5.301333pt;}
._e{margin-left:-3.641600pt;}
._7{margin-left:-2.528000pt;}
._3{margin-left:-1.109333pt;}
._2{width:1.669333pt;}
._5{width:3.338667pt;}
._9{width:4.401067pt;}
._8{width:5.630933pt;}
._d{width:6.526933pt;}
._6{width:7.466667pt;}
._a{width:9.122133pt;}
._b{width:10.053333pt;}
._f{width:11.226667pt;}
._17{width:12.263200pt;}
._14{width:13.708800pt;}
._15{width:14.665600pt;}
._1a{width:17.522133pt;}
._19{width:19.212800pt;}
._10{width:28.129867pt;}
._1e{width:60.480000pt;}
._20{width:84.106667pt;}
._22{width:119.562667pt;}
._23{width:124.800000pt;}
._24{width:155.418667pt;}
._21{width:165.072000pt;}
._12{width:179.168000pt;}
._25{width:182.138667pt;}
._26{width:195.008000pt;}
._27{width:221.248000pt;}
._1c{width:252.400000pt;}
._2c{width:304.464000pt;}
._2d{width:356.144000pt;}
._1d{width:393.013333pt;}
._1f{width:395.024000pt;}
._2a{width:405.050667pt;}
._2b{width:411.040000pt;}
._29{width:428.800000pt;}
._28{width:430.773333pt;}
.fsa{font-size:29.866667pt;}
.fs6{font-size:31.733333pt;}
.fs9{font-size:41.066667pt;}
.fs3{font-size:42.666667pt;}
.fs5{font-size:44.800000pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.fs4{font-size:376.736000pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:49.333333pt;}
.y1e{bottom:52.000000pt;}
.y1{bottom:64.000000pt;}
.y136{bottom:103.989600pt;}
.yd1{bottom:103.999733pt;}
.yb4{bottom:103.999867pt;}
.y8f{bottom:104.000000pt;}
.y1a7{bottom:104.000133pt;}
.y69{bottom:104.010400pt;}
.y42{bottom:104.128000pt;}
.y112{bottom:104.405067pt;}
.y1ae{bottom:104.992000pt;}
.y1de{bottom:106.661733pt;}
.y1c{bottom:107.740000pt;}
.y181{bottom:113.972000pt;}
.y68{bottom:116.938400pt;}
.yd0{bottom:117.333067pt;}
.yb3{bottom:117.333200pt;}
.yf1{bottom:117.333333pt;}
.y1ad{bottom:118.325333pt;}
.y8e{bottom:121.073333pt;}
.y1a6{bottom:121.073467pt;}
.y135{bottom:123.461600pt;}
.y1dd{bottom:123.461733pt;}
.y41{bottom:124.000000pt;}
.y111{bottom:124.533067pt;}
.yf0{bottom:130.666667pt;}
.y1ac{bottom:131.658667pt;}
.y67{bottom:133.606400pt;}
.ycf{bottom:134.406400pt;}
.yb2{bottom:134.406533pt;}
.y162{bottom:134.406667pt;}
.y8d{bottom:137.333333pt;}
.y180{bottom:137.958667pt;}
.y1dc{bottom:140.261733pt;}
.y134{bottom:142.933600pt;}
.y40{bottom:144.000000pt;}
.y110{bottom:144.666400pt;}
.y1ab{bottom:144.992000pt;}
.y66{bottom:149.471733pt;}
.y1b{bottom:150.194267pt;}
.yce{bottom:150.666400pt;}
.yb1{bottom:150.666533pt;}
.y8c{bottom:150.666667pt;}
.y1a5{bottom:156.645467pt;}
.y1db{bottom:157.061733pt;}
.y1aa{bottom:158.325333pt;}
.y143{bottom:160.208000pt;}
.yef{bottom:161.073333pt;}
.y17f{bottom:161.945333pt;}
.y133{bottom:162.400267pt;}
.yb0{bottom:163.999867pt;}
.y3f{bottom:164.000000pt;}
.y65{bottom:166.139733pt;}
.ycd{bottom:167.739733pt;}
.y8b{bottom:167.740000pt;}
.y1a{bottom:170.194267pt;}
.y1a9{bottom:171.658667pt;}
.y1da{bottom:173.861733pt;}
.y10f{bottom:174.965067pt;}
.y1a4{bottom:176.645467pt;}
.yaf{bottom:177.333200pt;}
.y142{bottom:180.480000pt;}
.y3e{bottom:184.000000pt;}
.y1a8{bottom:184.992000pt;}
.y64{bottom:185.739733pt;}
.y17e{bottom:185.932000pt;}
.y8a{bottom:187.740000pt;}
.y19{bottom:190.194267pt;}
.y1d9{bottom:190.661733pt;}
.yae{bottom:194.406533pt;}
.y1a3{bottom:195.717467pt;}
.yee{bottom:197.354667pt;}
.ycc{bottom:199.999733pt;}
.y141{bottom:200.752000pt;}
.y132{bottom:201.242933pt;}
.y63{bottom:201.610400pt;}
.y3d{bottom:204.000000pt;}
.y161{bottom:204.533333pt;}
.y1d8{bottom:207.461733pt;}
.y17d{bottom:209.918667pt;}
.y18{bottom:210.194267pt;}
.yad{bottom:210.666533pt;}
.y62{bottom:214.538400pt;}
.y1a2{bottom:214.789467pt;}
.y10e{bottom:215.365067pt;}
.yed{bottom:216.682667pt;}
.ycb{bottom:219.199733pt;}
.y131{bottom:220.714933pt;}
.y140{bottom:221.024000pt;}
.yac{bottom:223.999867pt;}
.y3c{bottom:224.000000pt;}
.y160{bottom:224.533333pt;}
.y89{bottom:225.344000pt;}
.y1d7{bottom:230.064000pt;}
.y17{bottom:230.194267pt;}
.y61{bottom:231.206400pt;}
.y1a1{bottom:233.861467pt;}
.y17c{bottom:233.905333pt;}
.y10d{bottom:235.493067pt;}
.yec{bottom:236.010667pt;}
.yca{bottom:238.399733pt;}
.y130{bottom:240.186933pt;}
.yab{bottom:241.073200pt;}
.y13f{bottom:241.296000pt;}
.y3b{bottom:244.000000pt;}
.y15f{bottom:244.533333pt;}
.y88{bottom:244.672000pt;}
.y1d6{bottom:246.192000pt;}
.y16{bottom:250.194267pt;}
.y1a0{bottom:252.773333pt;}
.yeb{bottom:255.338667pt;}
.y10c{bottom:255.621067pt;}
.yc9{bottom:257.599733pt;}
.y17b{bottom:257.892000pt;}
.y12f{bottom:259.658933pt;}
.y13e{bottom:261.568000pt;}
.y3a{bottom:264.000000pt;}
.y87{bottom:264.048000pt;}
.y15e{bottom:264.533333pt;}
.y60{bottom:266.799733pt;}
.y19f{bottom:271.845333pt;}
.yea{bottom:274.666667pt;}
.yaa{bottom:275.600000pt;}
.y10b{bottom:275.749067pt;}
.yc8{bottom:276.799733pt;}
.y12e{bottom:279.130933pt;}
.y13d{bottom:281.840000pt;}
.y17a{bottom:281.878667pt;}
.y86{bottom:283.376000pt;}
.y39{bottom:284.000000pt;}
.y15d{bottom:284.533333pt;}
.y1d5{bottom:286.458667pt;}
.y5f{bottom:287.199733pt;}
.y15{bottom:290.194267pt;}
.y19e{bottom:290.917333pt;}
.ya9{bottom:295.200000pt;}
.y10a{bottom:295.877067pt;}
.yc7{bottom:295.999733pt;}
.y1f7{bottom:297.333333pt;}
.y12d{bottom:298.602933pt;}
.y1d4{bottom:299.920000pt;}
.y13c{bottom:302.112000pt;}
.y85{bottom:302.704000pt;}
.ye9{bottom:303.376000pt;}
.y38{bottom:304.000000pt;}
.y15c{bottom:304.533333pt;}
.y179{bottom:305.865333pt;}
.y5e{bottom:306.399733pt;}
.y19d{bottom:309.989333pt;}
.y14{bottom:310.194267pt;}
.y1d3{bottom:313.381333pt;}
.y1f6{bottom:314.000000pt;}
.ya8{bottom:314.800000pt;}
.y109{bottom:316.005067pt;}
.y12c{bottom:318.074933pt;}
.y84{bottom:322.032000pt;}
.y13b{bottom:322.384000pt;}
.ye8{bottom:322.704000pt;}
.y37{bottom:324.000000pt;}
.y15b{bottom:324.533333pt;}
.y5d{bottom:325.599733pt;}
.y1d2{bottom:326.842667pt;}
.y19c{bottom:329.061333pt;}
.y178{bottom:329.852000pt;}
.y13{bottom:330.194267pt;}
.yc6{bottom:334.399733pt;}
.ya7{bottom:334.400000pt;}
.y108{bottom:336.133067pt;}
.y12b{bottom:337.546933pt;}
.y1d1{bottom:340.304000pt;}
.y83{bottom:341.360000pt;}
.ye7{bottom:342.032000pt;}
.y13a{bottom:342.656000pt;}
.y36{bottom:344.000000pt;}
.y15a{bottom:344.533333pt;}
.y5c{bottom:344.799733pt;}
.y19b{bottom:348.133333pt;}
.y12{bottom:350.194267pt;}
.yc5{bottom:353.599733pt;}
.y1d0{bottom:353.776000pt;}
.y177{bottom:353.838667pt;}
.ya6{bottom:354.000000pt;}
.y12a{bottom:357.018933pt;}
.y82{bottom:360.688000pt;}
.ye6{bottom:361.360000pt;}
.y139{bottom:362.928000pt;}
.y5b{bottom:363.999733pt;}
.y35{bottom:364.000000pt;}
.y159{bottom:364.533333pt;}
.y107{bottom:366.511733pt;}
.y19a{bottom:367.205333pt;}
.y1cf{bottom:367.237333pt;}
.y11{bottom:370.194267pt;}
.yc4{bottom:372.799733pt;}
.ya5{bottom:373.600000pt;}
.y129{bottom:376.490933pt;}
.y176{bottom:377.825333pt;}
.y81{bottom:380.016000pt;}
.y1f5{bottom:380.666667pt;}
.ye5{bottom:380.688000pt;}
.y1ce{bottom:380.698667pt;}
.y5a{bottom:383.199733pt;}
.y138{bottom:383.200000pt;}
.y34{bottom:384.000000pt;}
.y158{bottom:384.533333pt;}
.y199{bottom:386.277333pt;}
.y106{bottom:386.383733pt;}
.y10{bottom:390.194267pt;}
.yc3{bottom:391.999733pt;}
.ya4{bottom:393.200000pt;}
.y1cd{bottom:394.160000pt;}
.y128{bottom:395.962933pt;}
.y1f4{bottom:397.333333pt;}
.y80{bottom:399.344000pt;}
.ye4{bottom:400.016000pt;}
.y175{bottom:401.812000pt;}
.y59{bottom:402.399733pt;}
.y137{bottom:403.466667pt;}
.y33{bottom:404.000000pt;}
.y157{bottom:404.533333pt;}
.y198{bottom:405.349333pt;}
.y105{bottom:406.255733pt;}
.y1cc{bottom:407.621333pt;}
.yf{bottom:410.194267pt;}
.yc2{bottom:411.199733pt;}
.ya3{bottom:412.800000pt;}
.y1f3{bottom:414.000000pt;}
.y127{bottom:415.434933pt;}
.y7f{bottom:418.672000pt;}
.ye3{bottom:419.344000pt;}
.y1cb{bottom:421.093333pt;}
.y58{bottom:421.599733pt;}
.y32{bottom:424.000000pt;}
.y197{bottom:424.421333pt;}
.y174{bottom:425.798667pt;}
.y104{bottom:426.127733pt;}
.ye{bottom:430.194267pt;}
.yc1{bottom:430.399733pt;}
.ya2{bottom:432.400000pt;}
.y1ca{bottom:434.554667pt;}
.y126{bottom:434.906933pt;}
.y7e{bottom:438.074667pt;}
.ye2{bottom:438.672000pt;}
.y1f2{bottom:440.666667pt;}
.y57{bottom:440.799733pt;}
.y196{bottom:443.493333pt;}
.y31{bottom:444.000000pt;}
.y156{bottom:444.533333pt;}
.y103{bottom:445.999733pt;}
.y1c9{bottom:448.016000pt;}
.yc0{bottom:449.599733pt;}
.y173{bottom:449.785333pt;}
.yd{bottom:450.194267pt;}
.ya1{bottom:452.000000pt;}
.y125{bottom:454.378933pt;}
.y7d{bottom:457.402667pt;}
.ye1{bottom:458.000000pt;}
.y56{bottom:459.999733pt;}
.y1c8{bottom:461.477333pt;}
.y195{bottom:462.565333pt;}
.y30{bottom:464.000000pt;}
.y155{bottom:464.533333pt;}
.ybf{bottom:468.800000pt;}
.yc{bottom:470.194267pt;}
.ya0{bottom:471.600000pt;}
.y172{bottom:473.772000pt;}
.y124{bottom:473.850933pt;}
.y1c7{bottom:474.938667pt;}
.y102{bottom:476.095733pt;}
.y7c{bottom:476.730667pt;}
.y1f1{bottom:477.333333pt;}
.y55{bottom:479.199733pt;}
.y194{bottom:481.637333pt;}
.y2f{bottom:484.000000pt;}
.y154{bottom:484.533333pt;}
.ye0{bottom:486.709333pt;}
.ybe{bottom:488.000000pt;}
.y1c6{bottom:488.410667pt;}
.yb{bottom:490.194267pt;}
.y9f{bottom:491.200000pt;}
.y123{bottom:493.322933pt;}
.y1f0{bottom:494.000000pt;}
.y101{bottom:495.967733pt;}
.y7b{bottom:496.058667pt;}
.y171{bottom:497.758667pt;}
.y54{bottom:498.399733pt;}
.y193{bottom:500.709333pt;}
.y1c5{bottom:501.872000pt;}
.y2e{bottom:504.000000pt;}
.y153{bottom:504.533333pt;}
.ydf{bottom:506.037333pt;}
.ybd{bottom:507.200000pt;}
.ya{bottom:510.194267pt;}
.y1ef{bottom:510.666667pt;}
.y9e{bottom:510.800000pt;}
.y122{bottom:512.794933pt;}
.y1c4{bottom:515.333333pt;}
.y7a{bottom:515.386667pt;}
.y100{bottom:515.839733pt;}
.y53{bottom:517.599733pt;}
.y192{bottom:519.781333pt;}
.y170{bottom:521.745333pt;}
.y2d{bottom:524.000000pt;}
.y152{bottom:524.533333pt;}
.yde{bottom:525.365333pt;}
.ybc{bottom:526.400000pt;}
.y1ee{bottom:527.333333pt;}
.y1c3{bottom:528.794667pt;}
.y8{bottom:530.194267pt;}
.y121{bottom:532.266933pt;}
.y79{bottom:534.714667pt;}
.yff{bottom:535.711733pt;}
.y52{bottom:536.799733pt;}
.y16f{bottom:538.412000pt;}
.y191{bottom:538.853333pt;}
.y1c2{bottom:542.256000pt;}
.y2c{bottom:544.000000pt;}
.y151{bottom:544.533333pt;}
.ydd{bottom:544.693333pt;}
.ybb{bottom:545.600000pt;}
.y9d{bottom:550.000000pt;}
.y9{bottom:550.194267pt;}
.y120{bottom:551.733600pt;}
.y78{bottom:554.042667pt;}
.yfe{bottom:555.583733pt;}
.y1c1{bottom:555.728000pt;}
.y51{bottom:555.999733pt;}
.y190{bottom:557.925333pt;}
.y1ed{bottom:560.666667pt;}
.y2b{bottom:564.000000pt;}
.ydc{bottom:564.021333pt;}
.yba{bottom:564.800000pt;}
.y1c0{bottom:569.189333pt;}
.y9c{bottom:569.600000pt;}
.y77{bottom:573.370667pt;}
.y16e{bottom:573.733200pt;}
.y50{bottom:575.199733pt;}
.yfd{bottom:575.455733pt;}
.y18f{bottom:576.997333pt;}
.y1ec{bottom:577.333333pt;}
.y1bf{bottom:582.650667pt;}
.ydb{bottom:583.349333pt;}
.y2a{bottom:584.000000pt;}
.y150{bottom:584.538667pt;}
.y9b{bottom:589.200000pt;}
.y11f{bottom:590.869333pt;}
.y76{bottom:592.698667pt;}
.y1eb{bottom:594.000000pt;}
.y4f{bottom:594.399733pt;}
.yfc{bottom:595.327733pt;}
.y18e{bottom:596.069333pt;}
.y1be{bottom:596.112000pt;}
.yda{bottom:602.677333pt;}
.yb9{bottom:603.200000pt;}
.y29{bottom:604.000000pt;}
.y14f{bottom:604.538667pt;}
.y9a{bottom:608.800000pt;}
.y1bd{bottom:609.573333pt;}
.y11e{bottom:610.341333pt;}
.y1ea{bottom:610.666667pt;}
.y75{bottom:612.026667pt;}
.y4e{bottom:613.599733pt;}
.y16d{bottom:613.786667pt;}
.y18d{bottom:615.141333pt;}
.yfb{bottom:615.199733pt;}
.yd9{bottom:622.005333pt;}
.yb8{bottom:622.400000pt;}
.y1bc{bottom:623.045333pt;}
.y28{bottom:624.000000pt;}
.y14e{bottom:624.538667pt;}
.y1e9{bottom:627.333333pt;}
.y99{bottom:628.400000pt;}
.y11d{bottom:629.813333pt;}
.y7{bottom:630.194267pt;}
.y74{bottom:631.354667pt;}
.y4d{bottom:632.799733pt;}
.y18c{bottom:634.213333pt;}
.y16c{bottom:634.714667pt;}
.y1bb{bottom:636.506667pt;}
.yd8{bottom:641.333333pt;}
.yb7{bottom:641.600000pt;}
.y27{bottom:644.000000pt;}
.y14d{bottom:644.538667pt;}
.yfa{bottom:645.327733pt;}
.y6{bottom:646.860933pt;}
.y98{bottom:648.000000pt;}
.y11c{bottom:649.285333pt;}
.y1ba{bottom:649.968000pt;}
.y73{bottom:650.682667pt;}
.y4c{bottom:651.999733pt;}
.y18b{bottom:653.285333pt;}
.y16b{bottom:655.642667pt;}
.y1e8{bottom:660.666667pt;}
.yb6{bottom:660.800000pt;}
.y1b9{bottom:663.429333pt;}
.y26{bottom:664.000000pt;}
.y14c{bottom:664.538667pt;}
.yf9{bottom:665.199733pt;}
.y97{bottom:667.600000pt;}
.y11b{bottom:668.757333pt;}
.yd7{bottom:670.005333pt;}
.y72{bottom:670.010667pt;}
.y4b{bottom:671.200000pt;}
.y18a{bottom:672.357333pt;}
.y16a{bottom:676.570667pt;}
.y1b8{bottom:676.890667pt;}
.y1e7{bottom:677.333333pt;}
.yb5{bottom:680.000000pt;}
.y25{bottom:684.000000pt;}
.y5{bottom:684.314933pt;}
.y14b{bottom:684.538667pt;}
.yf8{bottom:685.066400pt;}
.y96{bottom:687.200000pt;}
.y11a{bottom:688.229333pt;}
.yd6{bottom:689.333333pt;}
.y71{bottom:689.338667pt;}
.y1b7{bottom:690.362667pt;}
.y4a{bottom:690.400000pt;}
.y189{bottom:691.429333pt;}
.y1e6{bottom:694.000000pt;}
.y169{bottom:697.498667pt;}
.y1b6{bottom:703.824000pt;}
.y24{bottom:704.000000pt;}
.y4{bottom:704.314933pt;}
.y14a{bottom:704.538667pt;}
.y95{bottom:706.800000pt;}
.y119{bottom:707.701333pt;}
.yd5{bottom:708.666667pt;}
.y70{bottom:708.688000pt;}
.y49{bottom:709.600000pt;}
.y188{bottom:710.501333pt;}
.y1e5{bottom:710.666667pt;}
.y168{bottom:718.426667pt;}
.y1b5{bottom:722.960000pt;}
.y23{bottom:724.000000pt;}
.y149{bottom:724.538667pt;}
.yf7{bottom:724.778667pt;}
.y94{bottom:726.399867pt;}
.y118{bottom:727.173333pt;}
.y1e4{bottom:727.333333pt;}
.y6f{bottom:728.016000pt;}
.y48{bottom:728.800000pt;}
.y187{bottom:729.573333pt;}
.y167{bottom:739.354667pt;}
.y22{bottom:744.000000pt;}
.y148{bottom:744.538667pt;}
.yf6{bottom:744.650667pt;}
.y117{bottom:746.645333pt;}
.y6e{bottom:747.344000pt;}
.yd4{bottom:747.349333pt;}
.y47{bottom:748.000000pt;}
.y186{bottom:748.645333pt;}
.y166{bottom:760.282667pt;}
.y1e3{bottom:760.666667pt;}
.y1b4{bottom:763.226667pt;}
.y3{bottom:764.000000pt;}
.yf5{bottom:764.522667pt;}
.y147{bottom:764.538667pt;}
.y93{bottom:765.600000pt;}
.y116{bottom:766.117333pt;}
.y6d{bottom:766.672000pt;}
.yd3{bottom:766.677333pt;}
.y46{bottom:767.200000pt;}
.y185{bottom:767.717333pt;}
.y1b3{bottom:776.688000pt;}
.y1e2{bottom:777.333333pt;}
.y165{bottom:781.210667pt;}
.y21{bottom:784.000000pt;}
.yf4{bottom:784.394667pt;}
.y146{bottom:784.538667pt;}
.y92{bottom:785.200000pt;}
.y115{bottom:785.589333pt;}
.y6c{bottom:786.000000pt;}
.yd2{bottom:786.005333pt;}
.y45{bottom:786.400000pt;}
.y184{bottom:786.789333pt;}
.y1b2{bottom:790.149333pt;}
.y2{bottom:790.666667pt;}
.y1e1{bottom:794.000000pt;}
.y164{bottom:802.138667pt;}
.y1b1{bottom:803.610667pt;}
.y20{bottom:804.000000pt;}
.y145{bottom:804.538667pt;}
.y91{bottom:804.800000pt;}
.y114{bottom:805.061333pt;}
.y6b{bottom:805.333333pt;}
.y44{bottom:805.600000pt;}
.y183{bottom:805.861333pt;}
.yf3{bottom:809.546667pt;}
.y1e0{bottom:810.666667pt;}
.y1b0{bottom:817.072000pt;}
.y163{bottom:823.066667pt;}
.y1f{bottom:824.000000pt;}
.yf2{bottom:824.133333pt;}
.y144{bottom:824.266667pt;}
.y90{bottom:824.400000pt;}
.y113{bottom:824.533333pt;}
.y6a{bottom:824.666667pt;}
.y43{bottom:824.800000pt;}
.y182{bottom:824.933333pt;}
.y1df{bottom:827.333333pt;}
.y1af{bottom:830.533333pt;}
.h9{height:26.945443pt;}
.h13{height:33.223750pt;}
.h18{height:34.730667pt;}
.h1{height:35.546875pt;}
.hd{height:36.229167pt;}
.hb{height:36.796875pt;}
.h3{height:37.333333pt;}
.ha{height:40.520833pt;}
.h12{height:40.757812pt;}
.h11{height:42.656250pt;}
.h16{height:43.413333pt;}
.h4{height:44.156250pt;}
.h5{height:45.286458pt;}
.h14{height:48.625000pt;}
.h7{height:54.343750pt;}
.he{height:58.861958pt;}
.hf{height:58.968625pt;}
.h15{height:59.139292pt;}
.hc{height:59.159558pt;}
.h10{height:59.160092pt;}
.h8{height:59.160625pt;}
.h17{height:59.801158pt;}
.h2{height:90.572917pt;}
.h6{height:263.715200pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x5{left:60.000000pt;}
.x8{left:73.232000pt;}
.x2{left:100.000000pt;}
.xa{left:104.112933pt;}
.x4{left:113.228400pt;}
.x6{left:119.986667pt;}
.x9{left:128.352000pt;}
.x3{left:136.354267pt;}
.x10{left:160.467200pt;}
.x7{left:233.373333pt;}
.xb{left:290.419600pt;}
.xe{left:517.910133pt;}
.xf{left:520.253867pt;}
.xc{left:524.213867pt;}
.xd{left:526.557600pt;}
.x1{left:564.791600pt;}
}




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