
    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_c0e085281ac24c549a37332d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.946000;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_bc68a9e01bf15ec0e8165508.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.946000;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_b0e0331812d5e0c2ed11401c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.203000;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_3fd85e0a2f80761fa5885442.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958496;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_04b0929c54a7f58dc922fa80.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.946000;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_21dfbfc50dd7a7ac8d642ac0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.958496;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_71328753a7161bda68c9dc1b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.750000;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_4e578c065107b6abc3d59564.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.349000;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_04b0929c54a7f58dc922fa80.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.946000;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_be1c532c2a3a609ec9a186e7.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.362000;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_1a539a19b4b76fb54b5e7d4d.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.200885;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_77636fc849cf9bde46ead3b4.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.384000;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_49519b6f449d6793a6cfa5b8.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.399963px;}
.va{vertical-align:-18.359985px;}
.v6{vertical-align:-17.339996px;}
.v5{vertical-align:-10.903841px;}
.v9{vertical-align:-8.375779px;}
.v3{vertical-align:-3.600037px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:14.382000px;}
.v7{vertical-align:17.339996px;}
.v4{vertical-align:18.569366px;}
.v1{vertical-align:20.399963px;}
.ls1c{letter-spacing:-9.180000px;}
.ls4d{letter-spacing:-4.860000px;}
.ls66{letter-spacing:-3.150000px;}
.ls84{letter-spacing:-1.665000px;}
.ls3c{letter-spacing:-1.201200px;}
.ls83{letter-spacing:-1.035000px;}
.ls4c{letter-spacing:-0.798000px;}
.ls7b{letter-spacing:-0.675000px;}
.ls56{letter-spacing:-0.655200px;}
.ls82{letter-spacing:-0.585000px;}
.ls5f{letter-spacing:-0.546000px;}
.ls65{letter-spacing:-0.540000px;}
.ls49{letter-spacing:-0.504000px;}
.ls68{letter-spacing:-0.495000px;}
.ls76{letter-spacing:-0.450000px;}
.ls77{letter-spacing:-0.405000px;}
.ls78{letter-spacing:-0.360000px;}
.ls41{letter-spacing:-0.327600px;}
.ls79{letter-spacing:-0.315000px;}
.ls52{letter-spacing:-0.273000px;}
.ls62{letter-spacing:-0.270000px;}
.ls63{letter-spacing:-0.225000px;}
.ls3e{letter-spacing:-0.218400px;}
.ls4b{letter-spacing:-0.191100px;}
.ls7a{letter-spacing:-0.180000px;}
.ls42{letter-spacing:-0.163800px;}
.ls4a{letter-spacing:-0.136500px;}
.ls7c{letter-spacing:-0.135000px;}
.ls3d{letter-spacing:-0.109200px;}
.ls8b{letter-spacing:-0.108000px;}
.ls81{letter-spacing:-0.090000px;}
.ls1d{letter-spacing:-0.054600px;}
.ls64{letter-spacing:-0.045000px;}
.ls53{letter-spacing:-0.035490px;}
.ls1b{letter-spacing:0.000000px;}
.ls2f{letter-spacing:0.000002px;}
.ls32{letter-spacing:0.000017px;}
.ls55{letter-spacing:0.000084px;}
.lsa{letter-spacing:0.001299px;}
.ls48{letter-spacing:0.010774px;}
.ls47{letter-spacing:0.010791px;}
.ls46{letter-spacing:0.010805px;}
.ls45{letter-spacing:0.010826px;}
.ls4{letter-spacing:0.013132px;}
.ls2{letter-spacing:0.013223px;}
.ls3{letter-spacing:0.013772px;}
.ls5a{letter-spacing:0.018060px;}
.ls3a{letter-spacing:0.035490px;}
.ls73{letter-spacing:0.045000px;}
.ls61{letter-spacing:0.054000px;}
.ls5{letter-spacing:0.054600px;}
.ls6c{letter-spacing:0.090000px;}
.ls9{letter-spacing:0.093647px;}
.ls2e{letter-spacing:0.104388px;}
.ls8{letter-spacing:0.106470px;}
.ls89{letter-spacing:0.108000px;}
.ls39{letter-spacing:0.109200px;}
.ls5e{letter-spacing:0.135000px;}
.ls3b{letter-spacing:0.141960px;}
.ls35{letter-spacing:0.159705px;}
.ls20{letter-spacing:0.163800px;}
.ls2d{letter-spacing:0.169260px;}
.ls51{letter-spacing:0.177448px;}
.ls30{letter-spacing:0.177449px;}
.ls36{letter-spacing:0.177450px;}
.ls59{letter-spacing:0.180000px;}
.ls60{letter-spacing:0.210600px;}
.ls88{letter-spacing:0.216000px;}
.ls31{letter-spacing:0.218400px;}
.ls4e{letter-spacing:0.226153px;}
.lsc{letter-spacing:0.269915px;}
.ls58{letter-spacing:0.270000px;}
.ls22{letter-spacing:0.273000px;}
.ls7d{letter-spacing:0.315000px;}
.ls57{letter-spacing:0.324000px;}
.ls3f{letter-spacing:0.327600px;}
.ls7{letter-spacing:0.349028px;}
.ls2c{letter-spacing:0.351031px;}
.ls2b{letter-spacing:0.351763px;}
.ls6{letter-spacing:0.354900px;}
.ls1a{letter-spacing:0.357000px;}
.ls67{letter-spacing:0.360000px;}
.ls54{letter-spacing:0.382199px;}
.ls21{letter-spacing:0.382200px;}
.ls5b{letter-spacing:0.405000px;}
.ls38{letter-spacing:0.425880px;}
.ls5d{letter-spacing:0.436492px;}
.lsb{letter-spacing:0.436800px;}
.ls33{letter-spacing:0.446978px;}
.ls5c{letter-spacing:0.450000px;}
.ls23{letter-spacing:0.461370px;}
.ls43{letter-spacing:0.491400px;}
.ls75{letter-spacing:0.540000px;}
.ls1f{letter-spacing:0.546000px;}
.ls74{letter-spacing:0.548995px;}
.ls6a{letter-spacing:0.585000px;}
.ls37{letter-spacing:0.600600px;}
.ls6b{letter-spacing:0.630000px;}
.ls1e{letter-spacing:0.655200px;}
.ls4f{letter-spacing:0.666160px;}
.ls87{letter-spacing:0.702000px;}
.lsd{letter-spacing:0.709800px;}
.ls44{letter-spacing:0.764399px;}
.ls40{letter-spacing:0.764400px;}
.ls6e{letter-spacing:0.765000px;}
.ls69{letter-spacing:0.769416px;}
.ls10{letter-spacing:0.776201px;}
.lsf{letter-spacing:0.776934px;}
.ls7e{letter-spacing:0.810000px;}
.ls24{letter-spacing:0.819000px;}
.ls8a{letter-spacing:0.918000px;}
.ls34{letter-spacing:0.928200px;}
.ls86{letter-spacing:0.972000px;}
.ls80{letter-spacing:1.080000px;}
.ls17{letter-spacing:1.086335px;}
.ls15{letter-spacing:1.086426px;}
.ls50{letter-spacing:1.092000px;}
.ls71{letter-spacing:1.125000px;}
.ls85{letter-spacing:1.134000px;}
.lse{letter-spacing:1.201200px;}
.ls12{letter-spacing:1.242150px;}
.ls14{letter-spacing:1.258867px;}
.ls13{letter-spacing:1.259417px;}
.ls11{letter-spacing:1.259895px;}
.ls27{letter-spacing:1.277640px;}
.ls25{letter-spacing:1.419600px;}
.ls18{letter-spacing:1.635834px;}
.ls16{letter-spacing:1.683000px;}
.ls6d{letter-spacing:1.709999px;}
.ls7f{letter-spacing:1.755000px;}
.ls6f{letter-spacing:1.845000px;}
.ls28{letter-spacing:1.965600px;}
.ls26{letter-spacing:2.293200px;}
.ls72{letter-spacing:2.515549px;}
.ls19{letter-spacing:2.550000px;}
.ls0{letter-spacing:2.592000px;}
.ls2a{letter-spacing:2.700000px;}
.ls1{letter-spacing:2.767500px;}
.ls29{letter-spacing:3.108000px;}
.ls70{letter-spacing:5.206527px;}
.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:-51.000000px;}
.ws3{word-spacing:-15.067500px;}
.ws27{word-spacing:-14.700000px;}
.ws7{word-spacing:-14.687401px;}
.ws59{word-spacing:-13.650001px;}
.ws6a{word-spacing:-13.596000px;}
.ws8a{word-spacing:-13.392000px;}
.ws28{word-spacing:-12.394201px;}
.ws4{word-spacing:-12.360000px;}
.ws69{word-spacing:-12.258000px;}
.ws0{word-spacing:-12.192000px;}
.ws2e{word-spacing:-12.175801px;}
.wsb4{word-spacing:-12.150000px;}
.ws86{word-spacing:-12.060000px;}
.ws68{word-spacing:-11.988000px;}
.ws66{word-spacing:-11.957400px;}
.wsb3{word-spacing:-11.718000px;}
.ws87{word-spacing:-11.340000px;}
.ws85{word-spacing:-10.980000px;}
.ws83{word-spacing:-10.845000px;}
.ws70{word-spacing:-10.665000px;}
.ws6f{word-spacing:-10.620000px;}
.ws94{word-spacing:-10.440000px;}
.ws88{word-spacing:-10.305000px;}
.ws82{word-spacing:-10.260000px;}
.ws6c{word-spacing:-10.215000px;}
.ws6b{word-spacing:-10.035000px;}
.ws1{word-spacing:-9.888000px;}
.ws6d{word-spacing:-9.765000px;}
.ws8b{word-spacing:-9.675000px;}
.ws84{word-spacing:-9.630000px;}
.ws46{word-spacing:-9.618000px;}
.ws2{word-spacing:-9.600000px;}
.wsac{word-spacing:-9.585000px;}
.ws98{word-spacing:-9.495000px;}
.ws8{word-spacing:-9.333870px;}
.ws89{word-spacing:-9.270000px;}
.ws4c{word-spacing:-8.736000px;}
.ws6{word-spacing:-8.517600px;}
.ws2a{word-spacing:-8.482110px;}
.ws29{word-spacing:-8.411130px;}
.ws2b{word-spacing:-8.233680px;}
.ws2d{word-spacing:-8.198190px;}
.ws67{word-spacing:-8.178300px;}
.ws2c{word-spacing:-8.091720px;}
.ws5{word-spacing:-8.056230px;}
.ws5a{word-spacing:-8.020740px;}
.ws61{word-spacing:-7.967700px;}
.ws6e{word-spacing:-7.155000px;}
.ws65{word-spacing:-5.508000px;}
.ws26{word-spacing:-3.108000px;}
.ws23{word-spacing:-2.550000px;}
.ws34{word-spacing:-1.911000px;}
.wsf{word-spacing:-1.856400px;}
.ws73{word-spacing:-1.836000px;}
.ws5e{word-spacing:-1.801800px;}
.ws9f{word-spacing:-1.755000px;}
.ws35{word-spacing:-1.747200px;}
.ws22{word-spacing:-1.683000px;}
.ws52{word-spacing:-1.638000px;}
.ws16{word-spacing:-1.583400px;}
.ws7f{word-spacing:-1.575000px;}
.ws78{word-spacing:-1.530000px;}
.ws31{word-spacing:-1.528800px;}
.wsa3{word-spacing:-1.485000px;}
.ws40{word-spacing:-1.474200px;}
.ws92{word-spacing:-1.440000px;}
.ws91{word-spacing:-1.395000px;}
.wsaa{word-spacing:-1.350000px;}
.ws19{word-spacing:-1.310400px;}
.wsa9{word-spacing:-1.305000px;}
.ws1f{word-spacing:-1.277640px;}
.ws74{word-spacing:-1.275000px;}
.wsc{word-spacing:-1.260000px;}
.ws13{word-spacing:-1.255800px;}
.ws57{word-spacing:-1.242000px;}
.wsa8{word-spacing:-1.215000px;}
.ws58{word-spacing:-1.188000px;}
.ws90{word-spacing:-1.170000px;}
.ws64{word-spacing:-1.146600px;}
.ws80{word-spacing:-1.080000px;}
.ws63{word-spacing:-1.037400px;}
.ws77{word-spacing:-1.035000px;}
.wsae{word-spacing:-0.990000px;}
.ws53{word-spacing:-0.982800px;}
.ws55{word-spacing:-0.966000px;}
.wsb{word-spacing:-0.960000px;}
.ws7c{word-spacing:-0.945000px;}
.wse{word-spacing:-0.873600px;}
.wsa5{word-spacing:-0.855000px;}
.ws7b{word-spacing:-0.810000px;}
.ws43{word-spacing:-0.764400px;}
.wsb8{word-spacing:-0.756000px;}
.ws97{word-spacing:-0.720000px;}
.ws3b{word-spacing:-0.709800px;}
.ws8f{word-spacing:-0.675000px;}
.ws10{word-spacing:-0.655200px;}
.ws72{word-spacing:-0.648000px;}
.ws14{word-spacing:-0.600600px;}
.wsba{word-spacing:-0.594000px;}
.ws93{word-spacing:-0.585000px;}
.ws33{word-spacing:-0.546000px;}
.ws79{word-spacing:-0.540000px;}
.ws7a{word-spacing:-0.495000px;}
.ws3a{word-spacing:-0.491400px;}
.ws71{word-spacing:-0.486000px;}
.wsab{word-spacing:-0.450000px;}
.ws5b{word-spacing:-0.436800px;}
.wsb7{word-spacing:-0.432000px;}
.ws75{word-spacing:-0.405000px;}
.ws3d{word-spacing:-0.382200px;}
.wsb2{word-spacing:-0.378000px;}
.ws7e{word-spacing:-0.360000px;}
.ws25{word-spacing:-0.357000px;}
.ws15{word-spacing:-0.327600px;}
.ws5c{word-spacing:-0.273000px;}
.wsa4{word-spacing:-0.270000px;}
.ws17{word-spacing:-0.218400px;}
.ws42{word-spacing:-0.177450px;}
.ws38{word-spacing:-0.163800px;}
.ws37{word-spacing:-0.141960px;}
.ws62{word-spacing:-0.109200px;}
.ws7d{word-spacing:-0.090000px;}
.ws18{word-spacing:-0.054600px;}
.ws8c{word-spacing:-0.045000px;}
.ws36{word-spacing:-0.035490px;}
.wsa{word-spacing:0.000000px;}
.ws5f{word-spacing:0.035490px;}
.ws5d{word-spacing:0.054600px;}
.ws76{word-spacing:0.090000px;}
.wsb1{word-spacing:0.108000px;}
.ws12{word-spacing:0.109200px;}
.ws99{word-spacing:0.135000px;}
.ws3f{word-spacing:0.163800px;}
.wsa6{word-spacing:0.180000px;}
.ws2f{word-spacing:0.218400px;}
.ws44{word-spacing:0.273000px;}
.ws30{word-spacing:0.327600px;}
.ws11{word-spacing:0.382200px;}
.ws3c{word-spacing:0.436800px;}
.wsa7{word-spacing:0.450000px;}
.ws8d{word-spacing:0.495000px;}
.ws1a{word-spacing:0.546000px;}
.ws81{word-spacing:0.585000px;}
.wsb9{word-spacing:0.594000px;}
.ws41{word-spacing:0.655200px;}
.ws54{word-spacing:0.709800px;}
.wsa2{word-spacing:0.810000px;}
.ws39{word-spacing:0.819000px;}
.ws96{word-spacing:0.855000px;}
.ws32{word-spacing:0.873600px;}
.ws9b{word-spacing:0.900000px;}
.ws9a{word-spacing:0.945000px;}
.ws8e{word-spacing:0.990000px;}
.ws9c{word-spacing:1.080000px;}
.ws3e{word-spacing:1.092000px;}
.wsb5{word-spacing:1.188000px;}
.wsb6{word-spacing:1.242000px;}
.ws95{word-spacing:1.395000px;}
.ws60{word-spacing:1.419600px;}
.wsaf{word-spacing:1.620000px;}
.wsad{word-spacing:1.665000px;}
.wsa0{word-spacing:1.710000px;}
.ws1b{word-spacing:1.747200px;}
.wsa1{word-spacing:1.755000px;}
.ws1d{word-spacing:2.129400px;}
.ws1e{word-spacing:2.238600px;}
.wsb0{word-spacing:2.754000px;}
.ws1c{word-spacing:2.948400px;}
.ws9d{word-spacing:3.510000px;}
.ws9e{word-spacing:3.555000px;}
.ws20{word-spacing:3.603600px;}
.ws56{word-spacing:3.672000px;}
.ws24{word-spacing:5.304000px;}
.ws21{word-spacing:5.569200px;}
.wsd{word-spacing:9.180000px;}
.ws45{word-spacing:164.434209px;}
.ws4d{word-spacing:240.997797px;}
.ws4e{word-spacing:248.041198px;}
.ws4f{word-spacing:273.883814px;}
.ws50{word-spacing:280.927215px;}
.ws4b{word-spacing:282.325800px;}
.ws48{word-spacing:287.197779px;}
.ws49{word-spacing:294.241179px;}
.ws51{word-spacing:298.063231px;}
.ws4a{word-spacing:313.202102px;}
.ws47{word-spacing:318.074080px;}
._14{margin-left:-11.565000px;}
._f{margin-left:-10.215000px;}
._13{margin-left:-8.505000px;}
._3{margin-left:-7.503600px;}
._4{margin-left:-5.475640px;}
._6{margin-left:-4.466130px;}
._2{margin-left:-3.166800px;}
._1{margin-left:-1.801950px;}
._0{width:1.728000px;}
._e{width:3.204000px;}
._7{width:4.896000px;}
._9{width:6.497400px;}
._8{width:7.675500px;}
._11{width:9.390626px;}
._12{width:10.442706px;}
._c{width:12.060000px;}
._d{width:13.500000px;}
._b{width:14.886001px;}
._10{width:17.460001px;}
._5{width:43.141209px;}
._a{width:129.565959px;}
.fc5{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc4{color:rgb(245,130,32);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(52,152,195);}
.fse{font-size:27.300001px;}
.fs9{font-size:33.150001px;}
.fsf{font-size:35.099999px;}
.fs8{font-size:35.490000px;}
.fs4{font-size:39.000000px;}
.fsd{font-size:42.000000px;}
.fs10{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fsa{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fs7{font-size:54.600002px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:61.500000px;}
.fs6{font-size:66.000000px;}
.fsb{font-size:84.000000px;}
.fsc{font-size:108.000000px;}
.fs3{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:27.177601px;}
.y1{bottom:27.197851px;}
.y2f{bottom:68.313899px;}
.y75{bottom:68.541894px;}
.y81{bottom:75.947251px;}
.y2e{bottom:83.307899px;}
.y74{bottom:83.543244px;}
.yfe{bottom:90.622044px;}
.y80{bottom:90.948601px;}
.yd1{bottom:91.259402px;}
.yc0{bottom:98.041947px;}
.y2d{bottom:98.307899px;}
.y73{bottom:98.544595px;}
.yfd{bottom:103.368295px;}
.y7f{bottom:105.949952px;}
.yd0{bottom:106.260752px;}
.ybf{bottom:113.040596px;}
.y72{bottom:113.545945px;}
.yfc{bottom:116.114545px;}
.y2c{bottom:117.636898px;}
.y14c{bottom:119.554498px;}
.y7e{bottom:120.951302px;}
.ycf{bottom:121.262102px;}
.ybe{bottom:128.041947px;}
.y71{bottom:128.547295px;}
.yfb{bottom:128.860795px;}
.y14b{bottom:134.552997px;}
.y7d{bottom:135.952652px;}
.yce{bottom:136.263453px;}
.yfa{bottom:141.607045px;}
.ybd{bottom:143.036546px;}
.y70{bottom:143.548645px;}
.y14a{bottom:149.551496px;}
.y7c{bottom:150.949952px;}
.ycd{bottom:151.264803px;}
.yf9{bottom:154.353295px;}
.ybc{bottom:158.037896px;}
.y6f{bottom:158.547295px;}
.y149{bottom:164.549995px;}
.y7b{bottom:165.951302px;}
.ycc{bottom:166.266153px;}
.yf8{bottom:167.099545px;}
.y2b{bottom:170.181610px;}
.ybb{bottom:173.039246px;}
.y6e{bottom:173.548645px;}
.y148{bottom:179.549995px;}
.yf7{bottom:179.845795px;}
.y7a{bottom:180.948601px;}
.ycb{bottom:181.267503px;}
.y2a{bottom:185.182961px;}
.yba{bottom:188.040596px;}
.y6d{bottom:188.549995px;}
.yf6{bottom:192.592045px;}
.y79{bottom:195.949952px;}
.yca{bottom:196.268854px;}
.y29{bottom:200.180260px;}
.yb9{bottom:203.041947px;}
.y6c{bottom:203.549995px;}
.yf5{bottom:205.338295px;}
.y78{bottom:210.951302px;}
.yc9{bottom:211.270204px;}
.y147{bottom:211.552016px;}
.y28{bottom:215.181610px;}
.yb8{bottom:218.036546px;}
.yf4{bottom:218.084546px;}
.y6b{bottom:218.549995px;}
.y146{bottom:224.298266px;}
.y77{bottom:225.951302px;}
.yc8{bottom:226.271554px;}
.y27{bottom:230.182961px;}
.yf3{bottom:230.830796px;}
.yb7{bottom:233.037896px;}
.y145{bottom:237.044516px;}
.y76{bottom:240.952652px;}
.yc7{bottom:241.272904px;}
.yf2{bottom:243.577046px;}
.y26{bottom:245.182961px;}
.yb6{bottom:248.039246px;}
.y6a{bottom:248.668946px;}
.y144{bottom:249.790766px;}
.yc6{bottom:256.274254px;}
.yf1{bottom:256.323296px;}
.y25{bottom:260.182961px;}
.y143{bottom:262.537017px;}
.yb5{bottom:263.040596px;}
.y69{bottom:263.670296px;}
.yf0{bottom:269.069546px;}
.yc5{bottom:271.275605px;}
.y24{bottom:275.180260px;}
.y142{bottom:275.283267px;}
.yb4{bottom:278.041947px;}
.y68{bottom:278.659494px;}
.yef{bottom:281.815796px;}
.yc4{bottom:286.276955px;}
.y141{bottom:288.029517px;}
.y23{bottom:290.181610px;}
.yb3{bottom:293.043297px;}
.y67{bottom:293.660844px;}
.yee{bottom:294.562046px;}
.y140{bottom:300.775767px;}
.yc3{bottom:301.278305px;}
.y90{bottom:301.604704px;}
.y22{bottom:305.182961px;}
.yed{bottom:307.308296px;}
.yb2{bottom:308.041947px;}
.y66{bottom:308.662195px;}
.y13f{bottom:313.522017px;}
.y8f{bottom:316.603203px;}
.yec{bottom:320.054546px;}
.y21{bottom:320.182961px;}
.yb1{bottom:323.043297px;}
.y65{bottom:323.663545px;}
.y13e{bottom:326.268267px;}
.yeb{bottom:332.800797px;}
.y20{bottom:335.184311px;}
.yb0{bottom:338.041947px;}
.y64{bottom:338.664895px;}
.y13d{bottom:339.014517px;}
.yea{bottom:345.547047px;}
.y1f{bottom:350.182961px;}
.y13c{bottom:351.760767px;}
.yaf{bottom:353.043297px;}
.y63{bottom:353.666245px;}
.yd9{bottom:354.798448px;}
.ye9{bottom:358.293297px;}
.y13b{bottom:364.507018px;}
.y1e{bottom:365.181610px;}
.yae{bottom:368.043297px;}
.y62{bottom:368.667595px;}
.yd8{bottom:369.796947px;}
.ye8{bottom:371.043297px;}
.y13a{bottom:377.253268px;}
.y1d{bottom:380.182961px;}
.y61{bottom:383.668946px;}
.yd7{bottom:384.795446px;}
.y139{bottom:389.999518px;}
.y1c{bottom:395.182961px;}
.y60{bottom:398.670296px;}
.yd6{bottom:399.793945px;}
.yad{bottom:401.037919px;}
.y138{bottom:402.745768px;}
.ye7{bottom:404.049320px;}
.y1b{bottom:410.184311px;}
.y5f{bottom:413.667595px;}
.y137{bottom:415.492018px;}
.yac{bottom:416.039269px;}
.ye6{bottom:419.043320px;}
.y1a{bottom:425.181610px;}
.y136{bottom:428.238268px;}
.y5e{bottom:428.668946px;}
.yab{bottom:431.040619px;}
.y19{bottom:440.182961px;}
.y135{bottom:440.984518px;}
.y5d{bottom:443.670296px;}
.yaa{bottom:446.041969px;}
.ye5{bottom:446.797822px;}
.y134{bottom:453.730768px;}
.y18{bottom:455.184311px;}
.y5c{bottom:458.663545px;}
.ya9{bottom:461.043320px;}
.ye4{bottom:461.796321px;}
.y133{bottom:466.477018px;}
.y17{bottom:470.184311px;}
.y5b{bottom:473.664895px;}
.ya8{bottom:476.037919px;}
.ye3{bottom:476.794821px;}
.y132{bottom:479.223269px;}
.y5a{bottom:488.666245px;}
.ya7{bottom:491.039269px;}
.ye2{bottom:491.793320px;}
.y131{bottom:491.969519px;}
.y59{bottom:503.667595px;}
.y130{bottom:504.715769px;}
.ya6{bottom:506.040619px;}
.ye1{bottom:506.793320px;}
.y12f{bottom:517.462019px;}
.y58{bottom:518.668946px;}
.ya5{bottom:521.041969px;}
.y16{bottom:529.464311px;}
.y12e{bottom:530.208269px;}
.y57{bottom:533.670296px;}
.ya4{bottom:536.043320px;}
.ye0{bottom:539.790619px;}
.y12d{bottom:542.954519px;}
.y15{bottom:545.961311px;}
.y56{bottom:548.671646px;}
.ya3{bottom:551.041969px;}
.ydf{bottom:554.791969px;}
.y12c{bottom:555.700769px;}
.y14{bottom:562.458311px;}
.y55{bottom:563.667595px;}
.ya2{bottom:566.043320px;}
.y12b{bottom:568.447019px;}
.yde{bottom:569.793320px;}
.y54{bottom:578.668946px;}
.y13{bottom:578.955311px;}
.ya1{bottom:581.039269px;}
.y12a{bottom:581.193269px;}
.ydd{bottom:584.793320px;}
.y53{bottom:593.670296px;}
.y129{bottom:593.939520px;}
.y12{bottom:595.452311px;}
.ya0{bottom:596.040619px;}
.ydc{bottom:599.793320px;}
.y128{bottom:606.685770px;}
.y52{bottom:608.671646px;}
.y9f{bottom:611.041969px;}
.y11{bottom:611.949311px;}
.y127{bottom:619.432020px;}
.y51{bottom:623.666245px;}
.y9e{bottom:626.043320px;}
.y10{bottom:628.446311px;}
.y126{bottom:632.178270px;}
.ydb{bottom:632.791969px;}
.y50{bottom:638.667595px;}
.y9d{bottom:641.041969px;}
.y125{bottom:644.924520px;}
.yf{bottom:644.943311px;}
.yda{bottom:647.793320px;}
.y4f{bottom:653.668946px;}
.y9c{bottom:656.043320px;}
.y124{bottom:657.670770px;}
.ye{bottom:661.440311px;}
.y163{bottom:665.811284px;}
.y4e{bottom:668.670296px;}
.y123{bottom:670.417020px;}
.y9b{bottom:671.036569px;}
.yd{bottom:677.937311px;}
.y162{bottom:680.809783px;}
.y122{bottom:683.163270px;}
.y4d{bottom:683.671646px;}
.y9a{bottom:686.037919px;}
.yc{bottom:694.434311px;}
.y161{bottom:695.808282px;}
.y121{bottom:695.909520px;}
.y4c{bottom:698.668946px;}
.y99{bottom:701.039269px;}
.y101{bottom:706.954036px;}
.y120{bottom:708.655771px;}
.y160{bottom:710.806781px;}
.y4b{bottom:713.670296px;}
.y98{bottom:716.040619px;}
.y11f{bottom:721.402021px;}
.y100{bottom:721.952535px;}
.y4a{bottom:728.670296px;}
.ya{bottom:730.434310px;}
.y97{bottom:731.041969px;}
.y11e{bottom:734.148271px;}
.yb{bottom:735.534302px;}
.yff{bottom:736.951035px;}
.y15f{bottom:740.803780px;}
.y49{bottom:743.670296px;}
.yd5{bottom:744.241954px;}
.y96{bottom:746.036523px;}
.y11d{bottom:746.894521px;}
.y8{bottom:748.434311px;}
.y9{bottom:753.534302px;}
.y15e{bottom:755.802279px;}
.y48{bottom:758.667641px;}
.yd4{bottom:759.240453px;}
.y11c{bottom:759.640771px;}
.y95{bottom:761.037873px;}
.y15d{bottom:770.800778px;}
.y11b{bottom:772.387021px;}
.y47{bottom:773.668991px;}
.yd3{bottom:774.240453px;}
.y94{bottom:776.039223px;}
.y7{bottom:781.416260px;}
.y11a{bottom:785.133271px;}
.y15c{bottom:785.799277px;}
.y46{bottom:788.670342px;}
.yd2{bottom:789.238953px;}
.y93{bottom:791.040573px;}
.y119{bottom:797.879521px;}
.y15b{bottom:800.797776px;}
.y45{bottom:803.670342px;}
.y92{bottom:806.041924px;}
.y118{bottom:810.625771px;}
.y15a{bottom:815.796276px;}
.y44{bottom:818.671692px;}
.y91{bottom:821.043274px;}
.y117{bottom:823.372022px;}
.y6{bottom:826.422262px;}
.y159{bottom:830.794775px;}
.y43{bottom:833.671692px;}
.y116{bottom:836.118272px;}
.y158{bottom:845.793274px;}
.y115{bottom:848.864522px;}
.y114{bottom:861.610772px;}
.y42{bottom:863.791924px;}
.y157{bottom:867.547776px;}
.y8e{bottom:870.168274px;}
.y30{bottom:871.199432px;}
.y5{bottom:871.428264px;}
.yc2{bottom:873.060278px;}
.y113{bottom:874.357022px;}
.y41{bottom:878.791924px;}
.y156{bottom:882.546276px;}
.y112{bottom:887.103272px;}
.yc1{bottom:888.058777px;}
.y40{bottom:893.790573px;}
.y111{bottom:899.849522px;}
.y8d{bottom:900.352774px;}
.y155{bottom:904.294775px;}
.y3f{bottom:908.791924px;}
.y110{bottom:912.595772px;}
.y4{bottom:916.434265px;}
.y8c{bottom:917.790274px;}
.y3e{bottom:923.791924px;}
.y10f{bottom:925.342022px;}
.y154{bottom:926.043274px;}
.y31{bottom:926.409576px;}
.y8b{bottom:935.227774px;}
.y10e{bottom:938.088273px;}
.y3d{bottom:938.791924px;}
.y153{bottom:941.043274px;}
.y10d{bottom:950.834523px;}
.y8a{bottom:952.665274px;}
.y3c{bottom:953.786523px;}
.y10c{bottom:963.580773px;}
.y3b{bottom:968.787873px;}
.y89{bottom:970.102774px;}
.y152{bottom:974.793274px;}
.y10b{bottom:976.327023px;}
.y3a{bottom:983.789223px;}
.y88{bottom:987.540274px;}
.y10a{bottom:989.073273px;}
.y151{bottom:989.793274px;}
.y39{bottom:998.790573px;}
.y109{bottom:1001.819523px;}
.y87{bottom:1004.977774px;}
.y38{bottom:1013.791924px;}
.y108{bottom:1014.565773px;}
.y150{bottom:1016.793274px;}
.y86{bottom:1022.415274px;}
.y107{bottom:1027.312023px;}
.y37{bottom:1028.790573px;}
.y14f{bottom:1031.793274px;}
.y85{bottom:1039.852774px;}
.y106{bottom:1040.058273px;}
.y36{bottom:1043.791924px;}
.y105{bottom:1052.804524px;}
.y84{bottom:1057.287274px;}
.y35{bottom:1058.791924px;}
.y14e{bottom:1058.794775px;}
.y104{bottom:1065.550774px;}
.y34{bottom:1073.791924px;}
.y14d{bottom:1073.793274px;}
.y83{bottom:1074.727774px;}
.y103{bottom:1078.297024px;}
.y33{bottom:1088.793274px;}
.y102{bottom:1091.043274px;}
.y82{bottom:1092.168274px;}
.y32{bottom:1139.852966px;}
.y3{bottom:1140.126892px;}
.h11{height:23.842749px;}
.h7{height:28.050293px;}
.h24{height:35.394000px;}
.h13{height:36.681152px;}
.ha{height:38.838867px;}
.h12{height:41.158746px;}
.h9{height:41.399963px;}
.h1d{height:41.538000px;}
.h1f{height:41.550000px;}
.h1e{height:42.084000px;}
.h2{height:43.140000px;}
.h8{height:43.154297px;}
.h4{height:44.218500px;}
.h26{height:44.505000px;}
.h27{height:45.090000px;}
.h3{height:45.744000px;}
.h25{height:46.080000px;}
.hb{height:47.469727px;}
.h6{height:48.450256px;}
.h14{height:52.632000px;}
.h23{height:53.406000px;}
.hc{height:53.999402px;}
.he{height:54.004803px;}
.h10{height:54.010158px;}
.hd{height:54.010204px;}
.h19{height:54.015422px;}
.hf{height:54.015605px;}
.h22{height:54.021006px;}
.h18{height:54.026407px;}
.h21{height:54.026590px;}
.h1b{height:54.031807px;}
.h1c{height:54.048010px;}
.h17{height:54.709202px;}
.h1a{height:54.730806px;}
.h20{height:55.296000px;}
.h15{height:60.416016px;}
.h16{height:77.677734px;}
.h5{height:112.201172px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:23.780700px;}
.x2{left:61.191450px;}
.xa{left:140.952747px;}
.x4{left:233.456406px;}
.xb{left:238.143906px;}
.x8{left:251.462395px;}
.xd{left:300.594589px;}
.x7{left:382.186958px;}
.x5{left:477.782547px;}
.x3{left:604.783493px;}
.x6{left:727.831970px;}
.xc{left:824.207428px;}
.x1{left:825.232819px;}
@media print{
.v2{vertical-align:-18.133301pt;}
.va{vertical-align:-16.319987pt;}
.v6{vertical-align:-15.413330pt;}
.v5{vertical-align:-9.692303pt;}
.v9{vertical-align:-7.445137pt;}
.v3{vertical-align:-3.200033pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:12.784000pt;}
.v7{vertical-align:15.413330pt;}
.v4{vertical-align:16.506103pt;}
.v1{vertical-align:18.133301pt;}
.ls1c{letter-spacing:-8.160000pt;}
.ls4d{letter-spacing:-4.320000pt;}
.ls66{letter-spacing:-2.800000pt;}
.ls84{letter-spacing:-1.480000pt;}
.ls3c{letter-spacing:-1.067733pt;}
.ls83{letter-spacing:-0.920000pt;}
.ls4c{letter-spacing:-0.709333pt;}
.ls7b{letter-spacing:-0.600000pt;}
.ls56{letter-spacing:-0.582400pt;}
.ls82{letter-spacing:-0.520000pt;}
.ls5f{letter-spacing:-0.485333pt;}
.ls65{letter-spacing:-0.480000pt;}
.ls49{letter-spacing:-0.448000pt;}
.ls68{letter-spacing:-0.440000pt;}
.ls76{letter-spacing:-0.400000pt;}
.ls77{letter-spacing:-0.360000pt;}
.ls78{letter-spacing:-0.320000pt;}
.ls41{letter-spacing:-0.291200pt;}
.ls79{letter-spacing:-0.280000pt;}
.ls52{letter-spacing:-0.242667pt;}
.ls62{letter-spacing:-0.240000pt;}
.ls63{letter-spacing:-0.200000pt;}
.ls3e{letter-spacing:-0.194133pt;}
.ls4b{letter-spacing:-0.169867pt;}
.ls7a{letter-spacing:-0.160000pt;}
.ls42{letter-spacing:-0.145600pt;}
.ls4a{letter-spacing:-0.121333pt;}
.ls7c{letter-spacing:-0.120000pt;}
.ls3d{letter-spacing:-0.097067pt;}
.ls8b{letter-spacing:-0.096000pt;}
.ls81{letter-spacing:-0.080000pt;}
.ls1d{letter-spacing:-0.048533pt;}
.ls64{letter-spacing:-0.040000pt;}
.ls53{letter-spacing:-0.031547pt;}
.ls1b{letter-spacing:0.000000pt;}
.ls2f{letter-spacing:0.000002pt;}
.ls32{letter-spacing:0.000015pt;}
.ls55{letter-spacing:0.000074pt;}
.lsa{letter-spacing:0.001155pt;}
.ls48{letter-spacing:0.009577pt;}
.ls47{letter-spacing:0.009592pt;}
.ls46{letter-spacing:0.009605pt;}
.ls45{letter-spacing:0.009624pt;}
.ls4{letter-spacing:0.011673pt;}
.ls2{letter-spacing:0.011754pt;}
.ls3{letter-spacing:0.012242pt;}
.ls5a{letter-spacing:0.016053pt;}
.ls3a{letter-spacing:0.031547pt;}
.ls73{letter-spacing:0.040000pt;}
.ls61{letter-spacing:0.048000pt;}
.ls5{letter-spacing:0.048533pt;}
.ls6c{letter-spacing:0.080000pt;}
.ls9{letter-spacing:0.083242pt;}
.ls2e{letter-spacing:0.092789pt;}
.ls8{letter-spacing:0.094640pt;}
.ls89{letter-spacing:0.096000pt;}
.ls39{letter-spacing:0.097067pt;}
.ls5e{letter-spacing:0.120000pt;}
.ls3b{letter-spacing:0.126187pt;}
.ls35{letter-spacing:0.141960pt;}
.ls20{letter-spacing:0.145600pt;}
.ls2d{letter-spacing:0.150453pt;}
.ls51{letter-spacing:0.157731pt;}
.ls30{letter-spacing:0.157732pt;}
.ls36{letter-spacing:0.157733pt;}
.ls59{letter-spacing:0.160000pt;}
.ls60{letter-spacing:0.187200pt;}
.ls88{letter-spacing:0.192000pt;}
.ls31{letter-spacing:0.194133pt;}
.ls4e{letter-spacing:0.201025pt;}
.lsc{letter-spacing:0.239924pt;}
.ls58{letter-spacing:0.240000pt;}
.ls22{letter-spacing:0.242667pt;}
.ls7d{letter-spacing:0.280000pt;}
.ls57{letter-spacing:0.288000pt;}
.ls3f{letter-spacing:0.291200pt;}
.ls7{letter-spacing:0.310247pt;}
.ls2c{letter-spacing:0.312027pt;}
.ls2b{letter-spacing:0.312678pt;}
.ls6{letter-spacing:0.315467pt;}
.ls1a{letter-spacing:0.317333pt;}
.ls67{letter-spacing:0.320000pt;}
.ls54{letter-spacing:0.339732pt;}
.ls21{letter-spacing:0.339733pt;}
.ls5b{letter-spacing:0.360000pt;}
.ls38{letter-spacing:0.378560pt;}
.ls5d{letter-spacing:0.387993pt;}
.lsb{letter-spacing:0.388267pt;}
.ls33{letter-spacing:0.397314pt;}
.ls5c{letter-spacing:0.400000pt;}
.ls23{letter-spacing:0.410107pt;}
.ls43{letter-spacing:0.436800pt;}
.ls75{letter-spacing:0.480000pt;}
.ls1f{letter-spacing:0.485333pt;}
.ls74{letter-spacing:0.487995pt;}
.ls6a{letter-spacing:0.520000pt;}
.ls37{letter-spacing:0.533867pt;}
.ls6b{letter-spacing:0.560000pt;}
.ls1e{letter-spacing:0.582400pt;}
.ls4f{letter-spacing:0.592142pt;}
.ls87{letter-spacing:0.624000pt;}
.lsd{letter-spacing:0.630933pt;}
.ls44{letter-spacing:0.679466pt;}
.ls40{letter-spacing:0.679467pt;}
.ls6e{letter-spacing:0.680000pt;}
.ls69{letter-spacing:0.683925pt;}
.ls10{letter-spacing:0.689957pt;}
.lsf{letter-spacing:0.690608pt;}
.ls7e{letter-spacing:0.720000pt;}
.ls24{letter-spacing:0.728000pt;}
.ls8a{letter-spacing:0.816000pt;}
.ls34{letter-spacing:0.825067pt;}
.ls86{letter-spacing:0.864000pt;}
.ls80{letter-spacing:0.960000pt;}
.ls17{letter-spacing:0.965631pt;}
.ls15{letter-spacing:0.965712pt;}
.ls50{letter-spacing:0.970667pt;}
.ls71{letter-spacing:1.000000pt;}
.ls85{letter-spacing:1.008000pt;}
.lse{letter-spacing:1.067733pt;}
.ls12{letter-spacing:1.104134pt;}
.ls14{letter-spacing:1.118993pt;}
.ls13{letter-spacing:1.119482pt;}
.ls11{letter-spacing:1.119907pt;}
.ls27{letter-spacing:1.135680pt;}
.ls25{letter-spacing:1.261867pt;}
.ls18{letter-spacing:1.454075pt;}
.ls16{letter-spacing:1.496000pt;}
.ls6d{letter-spacing:1.519999pt;}
.ls7f{letter-spacing:1.560000pt;}
.ls6f{letter-spacing:1.640000pt;}
.ls28{letter-spacing:1.747200pt;}
.ls26{letter-spacing:2.038400pt;}
.ls72{letter-spacing:2.236044pt;}
.ls19{letter-spacing:2.266667pt;}
.ls0{letter-spacing:2.304000pt;}
.ls2a{letter-spacing:2.400000pt;}
.ls1{letter-spacing:2.460000pt;}
.ls29{letter-spacing:2.762667pt;}
.ls70{letter-spacing:4.628024pt;}
.ws9{word-spacing:-45.333333pt;}
.ws3{word-spacing:-13.393333pt;}
.ws27{word-spacing:-13.066667pt;}
.ws7{word-spacing:-13.055467pt;}
.ws59{word-spacing:-12.133334pt;}
.ws6a{word-spacing:-12.085333pt;}
.ws8a{word-spacing:-11.904000pt;}
.ws28{word-spacing:-11.017067pt;}
.ws4{word-spacing:-10.986667pt;}
.ws69{word-spacing:-10.896000pt;}
.ws0{word-spacing:-10.837333pt;}
.ws2e{word-spacing:-10.822934pt;}
.wsb4{word-spacing:-10.800000pt;}
.ws86{word-spacing:-10.720000pt;}
.ws68{word-spacing:-10.656000pt;}
.ws66{word-spacing:-10.628800pt;}
.wsb3{word-spacing:-10.416000pt;}
.ws87{word-spacing:-10.080000pt;}
.ws85{word-spacing:-9.760000pt;}
.ws83{word-spacing:-9.640000pt;}
.ws70{word-spacing:-9.480000pt;}
.ws6f{word-spacing:-9.440000pt;}
.ws94{word-spacing:-9.280000pt;}
.ws88{word-spacing:-9.160000pt;}
.ws82{word-spacing:-9.120000pt;}
.ws6c{word-spacing:-9.080000pt;}
.ws6b{word-spacing:-8.920000pt;}
.ws1{word-spacing:-8.789333pt;}
.ws6d{word-spacing:-8.680000pt;}
.ws8b{word-spacing:-8.600000pt;}
.ws84{word-spacing:-8.560000pt;}
.ws46{word-spacing:-8.549333pt;}
.ws2{word-spacing:-8.533333pt;}
.wsac{word-spacing:-8.520000pt;}
.ws98{word-spacing:-8.440000pt;}
.ws8{word-spacing:-8.296773pt;}
.ws89{word-spacing:-8.240000pt;}
.ws4c{word-spacing:-7.765333pt;}
.ws6{word-spacing:-7.571200pt;}
.ws2a{word-spacing:-7.539653pt;}
.ws29{word-spacing:-7.476560pt;}
.ws2b{word-spacing:-7.318827pt;}
.ws2d{word-spacing:-7.287280pt;}
.ws67{word-spacing:-7.269600pt;}
.ws2c{word-spacing:-7.192640pt;}
.ws5{word-spacing:-7.161093pt;}
.ws5a{word-spacing:-7.129547pt;}
.ws61{word-spacing:-7.082400pt;}
.ws6e{word-spacing:-6.360000pt;}
.ws65{word-spacing:-4.896000pt;}
.ws26{word-spacing:-2.762667pt;}
.ws23{word-spacing:-2.266667pt;}
.ws34{word-spacing:-1.698667pt;}
.wsf{word-spacing:-1.650133pt;}
.ws73{word-spacing:-1.632000pt;}
.ws5e{word-spacing:-1.601600pt;}
.ws9f{word-spacing:-1.560000pt;}
.ws35{word-spacing:-1.553067pt;}
.ws22{word-spacing:-1.496000pt;}
.ws52{word-spacing:-1.456000pt;}
.ws16{word-spacing:-1.407467pt;}
.ws7f{word-spacing:-1.400000pt;}
.ws78{word-spacing:-1.360000pt;}
.ws31{word-spacing:-1.358933pt;}
.wsa3{word-spacing:-1.320000pt;}
.ws40{word-spacing:-1.310400pt;}
.ws92{word-spacing:-1.280000pt;}
.ws91{word-spacing:-1.240000pt;}
.wsaa{word-spacing:-1.200000pt;}
.ws19{word-spacing:-1.164800pt;}
.wsa9{word-spacing:-1.160000pt;}
.ws1f{word-spacing:-1.135680pt;}
.ws74{word-spacing:-1.133333pt;}
.wsc{word-spacing:-1.120000pt;}
.ws13{word-spacing:-1.116267pt;}
.ws57{word-spacing:-1.104000pt;}
.wsa8{word-spacing:-1.080000pt;}
.ws58{word-spacing:-1.056000pt;}
.ws90{word-spacing:-1.040000pt;}
.ws64{word-spacing:-1.019200pt;}
.ws80{word-spacing:-0.960000pt;}
.ws63{word-spacing:-0.922133pt;}
.ws77{word-spacing:-0.920000pt;}
.wsae{word-spacing:-0.880000pt;}
.ws53{word-spacing:-0.873600pt;}
.ws55{word-spacing:-0.858667pt;}
.wsb{word-spacing:-0.853333pt;}
.ws7c{word-spacing:-0.840000pt;}
.wse{word-spacing:-0.776533pt;}
.wsa5{word-spacing:-0.760000pt;}
.ws7b{word-spacing:-0.720000pt;}
.ws43{word-spacing:-0.679467pt;}
.wsb8{word-spacing:-0.672000pt;}
.ws97{word-spacing:-0.640000pt;}
.ws3b{word-spacing:-0.630933pt;}
.ws8f{word-spacing:-0.600000pt;}
.ws10{word-spacing:-0.582400pt;}
.ws72{word-spacing:-0.576000pt;}
.ws14{word-spacing:-0.533867pt;}
.wsba{word-spacing:-0.528000pt;}
.ws93{word-spacing:-0.520000pt;}
.ws33{word-spacing:-0.485333pt;}
.ws79{word-spacing:-0.480000pt;}
.ws7a{word-spacing:-0.440000pt;}
.ws3a{word-spacing:-0.436800pt;}
.ws71{word-spacing:-0.432000pt;}
.wsab{word-spacing:-0.400000pt;}
.ws5b{word-spacing:-0.388267pt;}
.wsb7{word-spacing:-0.384000pt;}
.ws75{word-spacing:-0.360000pt;}
.ws3d{word-spacing:-0.339733pt;}
.wsb2{word-spacing:-0.336000pt;}
.ws7e{word-spacing:-0.320000pt;}
.ws25{word-spacing:-0.317333pt;}
.ws15{word-spacing:-0.291200pt;}
.ws5c{word-spacing:-0.242667pt;}
.wsa4{word-spacing:-0.240000pt;}
.ws17{word-spacing:-0.194133pt;}
.ws42{word-spacing:-0.157733pt;}
.ws38{word-spacing:-0.145600pt;}
.ws37{word-spacing:-0.126187pt;}
.ws62{word-spacing:-0.097067pt;}
.ws7d{word-spacing:-0.080000pt;}
.ws18{word-spacing:-0.048533pt;}
.ws8c{word-spacing:-0.040000pt;}
.ws36{word-spacing:-0.031547pt;}
.wsa{word-spacing:0.000000pt;}
.ws5f{word-spacing:0.031547pt;}
.ws5d{word-spacing:0.048533pt;}
.ws76{word-spacing:0.080000pt;}
.wsb1{word-spacing:0.096000pt;}
.ws12{word-spacing:0.097067pt;}
.ws99{word-spacing:0.120000pt;}
.ws3f{word-spacing:0.145600pt;}
.wsa6{word-spacing:0.160000pt;}
.ws2f{word-spacing:0.194133pt;}
.ws44{word-spacing:0.242667pt;}
.ws30{word-spacing:0.291200pt;}
.ws11{word-spacing:0.339733pt;}
.ws3c{word-spacing:0.388267pt;}
.wsa7{word-spacing:0.400000pt;}
.ws8d{word-spacing:0.440000pt;}
.ws1a{word-spacing:0.485333pt;}
.ws81{word-spacing:0.520000pt;}
.wsb9{word-spacing:0.528000pt;}
.ws41{word-spacing:0.582400pt;}
.ws54{word-spacing:0.630933pt;}
.wsa2{word-spacing:0.720000pt;}
.ws39{word-spacing:0.728000pt;}
.ws96{word-spacing:0.760000pt;}
.ws32{word-spacing:0.776533pt;}
.ws9b{word-spacing:0.800000pt;}
.ws9a{word-spacing:0.840000pt;}
.ws8e{word-spacing:0.880000pt;}
.ws9c{word-spacing:0.960000pt;}
.ws3e{word-spacing:0.970667pt;}
.wsb5{word-spacing:1.056000pt;}
.wsb6{word-spacing:1.104000pt;}
.ws95{word-spacing:1.240000pt;}
.ws60{word-spacing:1.261867pt;}
.wsaf{word-spacing:1.440000pt;}
.wsad{word-spacing:1.480000pt;}
.wsa0{word-spacing:1.520000pt;}
.ws1b{word-spacing:1.553067pt;}
.wsa1{word-spacing:1.560000pt;}
.ws1d{word-spacing:1.892800pt;}
.ws1e{word-spacing:1.989867pt;}
.wsb0{word-spacing:2.448000pt;}
.ws1c{word-spacing:2.620800pt;}
.ws9d{word-spacing:3.120000pt;}
.ws9e{word-spacing:3.160000pt;}
.ws20{word-spacing:3.203200pt;}
.ws56{word-spacing:3.264000pt;}
.ws24{word-spacing:4.714667pt;}
.ws21{word-spacing:4.950400pt;}
.wsd{word-spacing:8.160000pt;}
.ws45{word-spacing:146.163742pt;}
.ws4d{word-spacing:214.220264pt;}
.ws4e{word-spacing:220.481065pt;}
.ws4f{word-spacing:243.452279pt;}
.ws50{word-spacing:249.713080pt;}
.ws4b{word-spacing:250.956267pt;}
.ws48{word-spacing:255.286915pt;}
.ws49{word-spacing:261.547715pt;}
.ws51{word-spacing:264.945095pt;}
.ws4a{word-spacing:278.401868pt;}
.ws47{word-spacing:282.732516pt;}
._14{margin-left:-10.280000pt;}
._f{margin-left:-9.080000pt;}
._13{margin-left:-7.560000pt;}
._3{margin-left:-6.669867pt;}
._4{margin-left:-4.867235pt;}
._6{margin-left:-3.969894pt;}
._2{margin-left:-2.814933pt;}
._1{margin-left:-1.601733pt;}
._0{width:1.536000pt;}
._e{width:2.848000pt;}
._7{width:4.352000pt;}
._9{width:5.775467pt;}
._8{width:6.822667pt;}
._11{width:8.347223pt;}
._12{width:9.282405pt;}
._c{width:10.720000pt;}
._d{width:12.000000pt;}
._b{width:13.232000pt;}
._10{width:15.520001pt;}
._5{width:38.347741pt;}
._a{width:115.169742pt;}
.fse{font-size:24.266668pt;}
.fs9{font-size:29.466667pt;}
.fsf{font-size:31.199999pt;}
.fs8{font-size:31.546666pt;}
.fs4{font-size:34.666667pt;}
.fsd{font-size:37.333333pt;}
.fs10{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fsa{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fs7{font-size:48.533335pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:54.666667pt;}
.fs6{font-size:58.666667pt;}
.fsb{font-size:74.666667pt;}
.fsc{font-size:96.000000pt;}
.fs3{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:24.157867pt;}
.y1{bottom:24.175868pt;}
.y2f{bottom:60.723466pt;}
.y75{bottom:60.926128pt;}
.y81{bottom:67.508668pt;}
.y2e{bottom:74.051466pt;}
.y74{bottom:74.260662pt;}
.yfe{bottom:80.552928pt;}
.y80{bottom:80.843201pt;}
.yd1{bottom:81.119468pt;}
.yc0{bottom:87.148397pt;}
.y2d{bottom:87.384799pt;}
.y73{bottom:87.595195pt;}
.yfd{bottom:91.882928pt;}
.y7f{bottom:94.177735pt;}
.yd0{bottom:94.454002pt;}
.ybf{bottom:100.480530pt;}
.y72{bottom:100.929729pt;}
.yfc{bottom:103.212929pt;}
.y2c{bottom:104.566132pt;}
.y14c{bottom:106.270665pt;}
.y7e{bottom:107.512268pt;}
.ycf{bottom:107.788535pt;}
.ybe{bottom:113.815064pt;}
.y71{bottom:114.264262pt;}
.yfb{bottom:114.542929pt;}
.y14b{bottom:119.602664pt;}
.y7d{bottom:120.846802pt;}
.yce{bottom:121.123069pt;}
.yfa{bottom:125.872929pt;}
.ybd{bottom:127.143596pt;}
.y70{bottom:127.598796pt;}
.y14a{bottom:132.934663pt;}
.y7c{bottom:134.177735pt;}
.ycd{bottom:134.457603pt;}
.yf9{bottom:137.202929pt;}
.ybc{bottom:140.478130pt;}
.y6f{bottom:140.930929pt;}
.y149{bottom:146.266663pt;}
.y7b{bottom:147.512268pt;}
.ycc{bottom:147.792136pt;}
.yf8{bottom:148.532929pt;}
.y2b{bottom:151.272543pt;}
.ybb{bottom:153.812663pt;}
.y6e{bottom:154.265462pt;}
.y148{bottom:159.599996pt;}
.yf7{bottom:159.862929pt;}
.y7a{bottom:160.843201pt;}
.ycb{bottom:161.126670pt;}
.y2a{bottom:164.607076pt;}
.yba{bottom:167.147197pt;}
.y6d{bottom:167.599996pt;}
.yf6{bottom:171.192929pt;}
.y79{bottom:174.177735pt;}
.yca{bottom:174.461203pt;}
.y29{bottom:177.938009pt;}
.yb9{bottom:180.481730pt;}
.y6c{bottom:180.933329pt;}
.yf5{bottom:182.522929pt;}
.y78{bottom:187.512268pt;}
.yc9{bottom:187.795737pt;}
.y147{bottom:188.046237pt;}
.y28{bottom:191.272543pt;}
.yb8{bottom:193.810263pt;}
.yf4{bottom:193.852929pt;}
.y6b{bottom:194.266663pt;}
.y146{bottom:199.376237pt;}
.y77{bottom:200.845602pt;}
.yc8{bottom:201.130270pt;}
.y27{bottom:204.607076pt;}
.yf3{bottom:205.182929pt;}
.yb7{bottom:207.144796pt;}
.y145{bottom:210.706237pt;}
.y76{bottom:214.180135pt;}
.yc7{bottom:214.464804pt;}
.yf2{bottom:216.512930pt;}
.y26{bottom:217.940410pt;}
.yb6{bottom:220.479330pt;}
.y6a{bottom:221.039063pt;}
.y144{bottom:222.036237pt;}
.yc6{bottom:227.799337pt;}
.yf1{bottom:227.842930pt;}
.y25{bottom:231.273743pt;}
.y143{bottom:233.366237pt;}
.yb5{bottom:233.813863pt;}
.y69{bottom:234.373596pt;}
.yf0{bottom:239.172930pt;}
.yc5{bottom:241.133871pt;}
.y24{bottom:244.604676pt;}
.y142{bottom:244.696237pt;}
.yb4{bottom:247.148397pt;}
.y68{bottom:247.697328pt;}
.yef{bottom:250.502930pt;}
.yc4{bottom:254.468404pt;}
.y141{bottom:256.026237pt;}
.y23{bottom:257.939209pt;}
.yb3{bottom:260.482930pt;}
.y67{bottom:261.031862pt;}
.yee{bottom:261.832930pt;}
.y140{bottom:267.356237pt;}
.yc3{bottom:267.802938pt;}
.y90{bottom:268.093070pt;}
.y22{bottom:271.273743pt;}
.yed{bottom:273.162930pt;}
.yb2{bottom:273.815064pt;}
.y66{bottom:274.366395pt;}
.y13f{bottom:278.686237pt;}
.y8f{bottom:281.425069pt;}
.yec{bottom:284.492930pt;}
.y21{bottom:284.607076pt;}
.yb1{bottom:287.149597pt;}
.y65{bottom:287.700929pt;}
.y13e{bottom:290.016237pt;}
.yeb{bottom:295.822930pt;}
.y20{bottom:297.941610pt;}
.yb0{bottom:300.481730pt;}
.y64{bottom:301.035462pt;}
.y13d{bottom:301.346238pt;}
.yea{bottom:307.152930pt;}
.y1f{bottom:311.273743pt;}
.y13c{bottom:312.676238pt;}
.yaf{bottom:313.816264pt;}
.y63{bottom:314.369996pt;}
.yd9{bottom:315.376398pt;}
.ye9{bottom:318.482930pt;}
.y13b{bottom:324.006238pt;}
.y1e{bottom:324.605876pt;}
.yae{bottom:327.149597pt;}
.y62{bottom:327.704529pt;}
.yd8{bottom:328.708397pt;}
.ye8{bottom:329.816264pt;}
.y13a{bottom:335.336238pt;}
.y1d{bottom:337.940410pt;}
.y61{bottom:341.039063pt;}
.yd7{bottom:342.040397pt;}
.y139{bottom:346.666238pt;}
.y1c{bottom:351.273743pt;}
.y60{bottom:354.373596pt;}
.yd6{bottom:355.372396pt;}
.yad{bottom:356.478150pt;}
.y138{bottom:357.996238pt;}
.ye7{bottom:359.154951pt;}
.y1b{bottom:364.608276pt;}
.y5f{bottom:367.704529pt;}
.y137{bottom:369.326238pt;}
.yac{bottom:369.812684pt;}
.ye6{bottom:372.482951pt;}
.y1a{bottom:377.939209pt;}
.y136{bottom:380.656238pt;}
.y5e{bottom:381.039063pt;}
.yab{bottom:383.147217pt;}
.y19{bottom:391.273743pt;}
.y135{bottom:391.986238pt;}
.y5d{bottom:394.373596pt;}
.yaa{bottom:396.481751pt;}
.ye5{bottom:397.153620pt;}
.y134{bottom:403.316238pt;}
.y18{bottom:404.608276pt;}
.y5c{bottom:407.700929pt;}
.ya9{bottom:409.816284pt;}
.ye4{bottom:410.485619pt;}
.y133{bottom:414.646239pt;}
.y17{bottom:417.941610pt;}
.y5b{bottom:421.035462pt;}
.ya8{bottom:423.144817pt;}
.ye3{bottom:423.817618pt;}
.y132{bottom:425.976239pt;}
.y5a{bottom:434.369996pt;}
.ya7{bottom:436.479350pt;}
.ye2{bottom:437.149618pt;}
.y131{bottom:437.306239pt;}
.y59{bottom:447.704529pt;}
.y130{bottom:448.636239pt;}
.ya6{bottom:449.813884pt;}
.ye1{bottom:450.482951pt;}
.y12f{bottom:459.966239pt;}
.y58{bottom:461.039063pt;}
.ya5{bottom:463.148417pt;}
.y16{bottom:470.634943pt;}
.y12e{bottom:471.296239pt;}
.y57{bottom:474.373596pt;}
.ya4{bottom:476.482951pt;}
.ye0{bottom:479.813884pt;}
.y12d{bottom:482.626239pt;}
.y15{bottom:485.298943pt;}
.y56{bottom:487.708130pt;}
.ya3{bottom:489.815084pt;}
.ydf{bottom:493.148417pt;}
.y12c{bottom:493.956239pt;}
.y14{bottom:499.962943pt;}
.y55{bottom:501.037863pt;}
.ya2{bottom:503.149618pt;}
.y12b{bottom:505.286239pt;}
.yde{bottom:506.482951pt;}
.y54{bottom:514.372396pt;}
.y13{bottom:514.626943pt;}
.ya1{bottom:516.479350pt;}
.y12a{bottom:516.616239pt;}
.ydd{bottom:519.816284pt;}
.y53{bottom:527.706930pt;}
.y129{bottom:527.946240pt;}
.y12{bottom:529.290943pt;}
.ya0{bottom:529.813884pt;}
.ydc{bottom:533.149618pt;}
.y128{bottom:539.276240pt;}
.y52{bottom:541.041463pt;}
.y9f{bottom:543.148417pt;}
.y11{bottom:543.954943pt;}
.y127{bottom:550.606240pt;}
.y51{bottom:554.369996pt;}
.y9e{bottom:556.482951pt;}
.y10{bottom:558.618943pt;}
.y126{bottom:561.936240pt;}
.ydb{bottom:562.481751pt;}
.y50{bottom:567.704529pt;}
.y9d{bottom:569.815084pt;}
.y125{bottom:573.266240pt;}
.yf{bottom:573.282943pt;}
.yda{bottom:575.816284pt;}
.y4f{bottom:581.039063pt;}
.y9c{bottom:583.149618pt;}
.y124{bottom:584.596240pt;}
.ye{bottom:587.946943pt;}
.y163{bottom:591.832252pt;}
.y4e{bottom:594.373596pt;}
.y123{bottom:595.926240pt;}
.y9b{bottom:596.476950pt;}
.yd{bottom:602.610943pt;}
.y162{bottom:605.164251pt;}
.y122{bottom:607.256240pt;}
.y4d{bottom:607.708130pt;}
.y9a{bottom:609.811483pt;}
.yc{bottom:617.274943pt;}
.y161{bottom:618.496251pt;}
.y121{bottom:618.586240pt;}
.y4c{bottom:621.039063pt;}
.y99{bottom:623.146017pt;}
.y101{bottom:628.403588pt;}
.y120{bottom:629.916240pt;}
.y160{bottom:631.828250pt;}
.y4b{bottom:634.373596pt;}
.y98{bottom:636.480550pt;}
.y11f{bottom:641.246241pt;}
.y100{bottom:641.735587pt;}
.y4a{bottom:647.706930pt;}
.ya{bottom:649.274942pt;}
.y97{bottom:649.815084pt;}
.y11e{bottom:652.576241pt;}
.yb{bottom:653.808268pt;}
.yff{bottom:655.067586pt;}
.y15f{bottom:658.492249pt;}
.y49{bottom:661.040263pt;}
.yd5{bottom:661.548404pt;}
.y96{bottom:663.143576pt;}
.y11d{bottom:663.906241pt;}
.y8{bottom:665.274943pt;}
.y9{bottom:669.808268pt;}
.y15e{bottom:671.824248pt;}
.y48{bottom:674.371237pt;}
.yd4{bottom:674.880403pt;}
.y11c{bottom:675.236241pt;}
.y95{bottom:676.478109pt;}
.y15d{bottom:685.156247pt;}
.y11b{bottom:686.566241pt;}
.y47{bottom:687.705770pt;}
.yd3{bottom:688.213736pt;}
.y94{bottom:689.812643pt;}
.y7{bottom:694.592232pt;}
.y11a{bottom:697.896241pt;}
.y15c{bottom:698.488246pt;}
.y46{bottom:701.040304pt;}
.yd2{bottom:701.545736pt;}
.y93{bottom:703.147176pt;}
.y119{bottom:709.226241pt;}
.y15b{bottom:711.820246pt;}
.y45{bottom:714.373637pt;}
.y92{bottom:716.481710pt;}
.y118{bottom:720.556241pt;}
.y15a{bottom:725.152245pt;}
.y44{bottom:727.708171pt;}
.y91{bottom:729.816243pt;}
.y117{bottom:731.886241pt;}
.y6{bottom:734.597566pt;}
.y159{bottom:738.484244pt;}
.y43{bottom:741.041504pt;}
.y116{bottom:743.216241pt;}
.y158{bottom:751.816243pt;}
.y115{bottom:754.546242pt;}
.y114{bottom:765.876242pt;}
.y42{bottom:767.815043pt;}
.y157{bottom:771.153579pt;}
.y8e{bottom:773.482910pt;}
.y30{bottom:774.399495pt;}
.y5{bottom:774.602901pt;}
.yc2{bottom:776.053580pt;}
.y113{bottom:777.206242pt;}
.y41{bottom:781.148377pt;}
.y156{bottom:784.485578pt;}
.y112{bottom:788.536242pt;}
.yc1{bottom:789.385579pt;}
.y40{bottom:794.480510pt;}
.y111{bottom:799.866242pt;}
.y8d{bottom:800.313577pt;}
.y155{bottom:803.817578pt;}
.y3f{bottom:807.815043pt;}
.y110{bottom:811.196242pt;}
.y4{bottom:814.608236pt;}
.y8c{bottom:815.813577pt;}
.y3e{bottom:821.148377pt;}
.y10f{bottom:822.526242pt;}
.y154{bottom:823.149577pt;}
.y31{bottom:823.475179pt;}
.y8b{bottom:831.313577pt;}
.y10e{bottom:833.856242pt;}
.y3d{bottom:834.481710pt;}
.y153{bottom:836.482910pt;}
.y10d{bottom:845.186242pt;}
.y8a{bottom:846.813577pt;}
.y3c{bottom:847.810243pt;}
.y10c{bottom:856.516242pt;}
.y3b{bottom:861.144776pt;}
.y89{bottom:862.313577pt;}
.y152{bottom:866.482910pt;}
.y10b{bottom:867.846243pt;}
.y3a{bottom:874.479310pt;}
.y88{bottom:877.813577pt;}
.y10a{bottom:879.176243pt;}
.y151{bottom:879.816243pt;}
.y39{bottom:887.813843pt;}
.y109{bottom:890.506243pt;}
.y87{bottom:893.313577pt;}
.y38{bottom:901.148377pt;}
.y108{bottom:901.836243pt;}
.y150{bottom:903.816243pt;}
.y86{bottom:908.813577pt;}
.y107{bottom:913.166243pt;}
.y37{bottom:914.480510pt;}
.y14f{bottom:917.149577pt;}
.y85{bottom:924.313577pt;}
.y106{bottom:924.496243pt;}
.y36{bottom:927.815043pt;}
.y105{bottom:935.826243pt;}
.y84{bottom:939.810910pt;}
.y35{bottom:941.148377pt;}
.y14e{bottom:941.150911pt;}
.y104{bottom:947.156243pt;}
.y34{bottom:954.481710pt;}
.y14d{bottom:954.482910pt;}
.y83{bottom:955.313577pt;}
.y103{bottom:958.486243pt;}
.y33{bottom:967.816243pt;}
.y102{bottom:969.816243pt;}
.y82{bottom:970.816243pt;}
.y32{bottom:1013.202637pt;}
.y3{bottom:1013.446126pt;}
.h11{height:21.193555pt;}
.h7{height:24.933594pt;}
.h24{height:31.461333pt;}
.h13{height:32.605469pt;}
.ha{height:34.523438pt;}
.h12{height:36.585552pt;}
.h9{height:36.799967pt;}
.h1d{height:36.922667pt;}
.h1f{height:36.933334pt;}
.h1e{height:37.408000pt;}
.h2{height:38.346667pt;}
.h8{height:38.359375pt;}
.h4{height:39.305333pt;}
.h26{height:39.560000pt;}
.h27{height:40.080000pt;}
.h3{height:40.661333pt;}
.h25{height:40.960000pt;}
.hb{height:42.195312pt;}
.h6{height:43.066895pt;}
.h14{height:46.784000pt;}
.h23{height:47.472000pt;}
.hc{height:47.999469pt;}
.he{height:48.004269pt;}
.h10{height:48.009030pt;}
.hd{height:48.009070pt;}
.h19{height:48.013708pt;}
.hf{height:48.013871pt;}
.h22{height:48.018672pt;}
.h18{height:48.023473pt;}
.h21{height:48.023635pt;}
.h1b{height:48.028273pt;}
.h1c{height:48.042676pt;}
.h17{height:48.630402pt;}
.h1a{height:48.649605pt;}
.h20{height:49.152000pt;}
.h15{height:53.703125pt;}
.h16{height:69.046875pt;}
.h5{height:99.734375pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:21.138400pt;}
.x2{left:54.392400pt;}
.xa{left:125.291331pt;}
.x4{left:207.516805pt;}
.xb{left:211.683472pt;}
.x8{left:223.522129pt;}
.xd{left:267.195190pt;}
.x7{left:339.721741pt;}
.x5{left:424.695597pt;}
.x3{left:537.585327pt;}
.x6{left:646.961751pt;}
.xc{left:732.628825pt;}
.x1{left:733.540283pt;}
}




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