
    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_640a96d849ca3d1a103c7e71.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.753906;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_eeaf7ff61c40a18a1c5479b9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.145508;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_9baeadad56fd65201c6df505.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.144043;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_cb727e8737adf62dc05b58af.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.168945;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_4f2414e8c58192dce5639505.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.139160;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_9b00602bd59ddc1edf90ce2a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.139160;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_f9de54bdd879351d1af6c80e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.145508;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_45f8dbb408027e620372d2f6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.435059;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_dae5028edf901e3490c980b1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.767578;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_ef45069fb956eac39b122fe2.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls35{letter-spacing:-0.684000px;}
.ls33{letter-spacing:-0.558000px;}
.ls2c{letter-spacing:-0.550200px;}
.ls42{letter-spacing:-0.456600px;}
.ls24{letter-spacing:-0.316800px;}
.ls31{letter-spacing:-0.270000px;}
.ls3c{letter-spacing:-0.224400px;}
.ls28{letter-spacing:-0.220200px;}
.ls17{letter-spacing:-0.216000px;}
.ls10{letter-spacing:-0.187200px;}
.ls1f{letter-spacing:-0.175800px;}
.lsf{letter-spacing:-0.166800px;}
.ls8{letter-spacing:-0.150000px;}
.ls1c{letter-spacing:-0.138000px;}
.ls29{letter-spacing:-0.132600px;}
.lsd{letter-spacing:-0.109200px;}
.ls20{letter-spacing:-0.100800px;}
.ls30{letter-spacing:-0.090000px;}
.ls36{letter-spacing:-0.042600px;}
.ls21{letter-spacing:-0.025920px;}
.ls6{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.012240px;}
.ls5{letter-spacing:0.036000px;}
.ls15{letter-spacing:0.063600px;}
.ls2e{letter-spacing:0.090000px;}
.ls11{letter-spacing:0.108000px;}
.ls1a{letter-spacing:0.152400px;}
.ls4{letter-spacing:0.159120px;}
.ls2f{letter-spacing:0.162000px;}
.ls25{letter-spacing:0.169800px;}
.ls2{letter-spacing:0.169920px;}
.ls16{letter-spacing:0.180000px;}
.ls22{letter-spacing:0.193200px;}
.ls3{letter-spacing:0.216000px;}
.lsa{letter-spacing:0.220800px;}
.ls1{letter-spacing:0.221760px;}
.ls7{letter-spacing:0.222000px;}
.ls0{letter-spacing:0.288000px;}
.lsc{letter-spacing:0.306000px;}
.ls26{letter-spacing:0.328200px;}
.ls9{letter-spacing:0.333600px;}
.ls12{letter-spacing:0.342000px;}
.ls19{letter-spacing:0.349920px;}
.ls27{letter-spacing:0.388080px;}
.ls2a{letter-spacing:0.388200px;}
.ls3d{letter-spacing:0.401760px;}
.ls41{letter-spacing:0.550800px;}
.ls34{letter-spacing:0.810000px;}
.ls32{letter-spacing:0.882000px;}
.ls3b{letter-spacing:1.661760px;}
.ls40{letter-spacing:5.772240px;}
.ls39{letter-spacing:7.421760px;}
.ls2b{letter-spacing:8.141760px;}
.ls1d{letter-spacing:10.301760px;}
.ls3a{letter-spacing:11.021760px;}
.ls3f{letter-spacing:12.972240px;}
.lse{letter-spacing:15.132240px;}
.ls2d{letter-spacing:25.938000px;}
.ls13{letter-spacing:26.201280px;}
.ls18{letter-spacing:26.945280px;}
.ls23{letter-spacing:30.545280px;}
.ls1e{letter-spacing:34.145280px;}
.lsb{letter-spacing:62.225280px;}
.ls37{letter-spacing:64.908000px;}
.ls38{letter-spacing:65.028000px;}
.ls14{letter-spacing:67.985280px;}
.ls3e{letter-spacing:193.181760px;}
.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;}
}
.ws0{word-spacing:-43.344000px;}
.ws5{word-spacing:-21.960000px;}
.ws3{word-spacing:-21.672000px;}
.ws17{word-spacing:-20.266440px;}
.ws15{word-spacing:-20.131440px;}
.wse{word-spacing:-20.001840px;}
.ws1{word-spacing:-19.938240px;}
.ws14{word-spacing:-19.912320px;}
.ws19{word-spacing:-19.805640px;}
.ws2{word-spacing:-19.788240px;}
.wsa{word-spacing:-19.771440px;}
.ws13{word-spacing:-19.762440px;}
.wsb{word-spacing:-19.751040px;}
.ws99{word-spacing:-19.713840px;}
.ws16{word-spacing:-19.621440px;}
.ws1a{word-spacing:-18.375960px;}
.ws9{word-spacing:-18.305520px;}
.ws9a{word-spacing:-17.987760px;}
.ws18{word-spacing:-17.767560px;}
.ws9b{word-spacing:-17.531160px;}
.ws4{word-spacing:-17.454480px;}
.ws6{word-spacing:-17.341680px;}
.ws10{word-spacing:-16.470000px;}
.ws11{word-spacing:-16.434000px;}
.wsd{word-spacing:-16.362000px;}
.ws7{word-spacing:-16.290000px;}
.wsc{word-spacing:-16.254000px;}
.ws12{word-spacing:-16.038000px;}
.ws98{word-spacing:-15.984000px;}
.ws4b{word-spacing:-0.684000px;}
.ws7b{word-spacing:-0.648000px;}
.ws6e{word-spacing:-0.396000px;}
.ws25{word-spacing:-0.360000px;}
.ws3b{word-spacing:-0.234000px;}
.wsf{word-spacing:-0.066240px;}
.ws8{word-spacing:0.000000px;}
.ws1f{word-spacing:0.072000px;}
.ws20{word-spacing:0.090000px;}
.ws1e{word-spacing:0.108000px;}
.ws86{word-spacing:0.198000px;}
.ws5d{word-spacing:0.207360px;}
.ws7a{word-spacing:0.354000px;}
.ws3d{word-spacing:0.414000px;}
.ws29{word-spacing:0.486000px;}
.ws2a{word-spacing:0.882000px;}
.ws4a{word-spacing:0.918000px;}
.ws3c{word-spacing:0.936000px;}
.ws52{word-spacing:2.232000px;}
.ws51{word-spacing:2.250000px;}
.ws53{word-spacing:2.538000px;}
.ws75{word-spacing:2.934000px;}
.ws76{word-spacing:2.952000px;}
.ws77{word-spacing:3.276000px;}
.ws28{word-spacing:3.654000px;}
.ws27{word-spacing:5.166000px;}
.ws32{word-spacing:5.484000px;}
.ws7f{word-spacing:5.778000px;}
.ws78{word-spacing:6.516000px;}
.ws31{word-spacing:6.552000px;}
.ws2f{word-spacing:6.588000px;}
.ws30{word-spacing:6.696000px;}
.ws21{word-spacing:8.802000px;}
.ws24{word-spacing:8.976000px;}
.ws22{word-spacing:9.576000px;}
.ws23{word-spacing:9.828000px;}
.ws5a{word-spacing:10.098000px;}
.ws5b{word-spacing:10.152000px;}
.ws42{word-spacing:10.188000px;}
.ws71{word-spacing:13.122000px;}
.ws8d{word-spacing:14.472000px;}
.ws8e{word-spacing:14.562000px;}
.ws68{word-spacing:16.632000px;}
.ws67{word-spacing:16.686000px;}
.ws69{word-spacing:16.776000px;}
.ws35{word-spacing:16.830000px;}
.ws36{word-spacing:17.046000px;}
.ws34{word-spacing:17.352000px;}
.ws33{word-spacing:17.370000px;}
.ws46{word-spacing:17.472000px;}
.ws45{word-spacing:17.856000px;}
.ws43{word-spacing:18.036000px;}
.ws44{word-spacing:18.072000px;}
.ws92{word-spacing:18.756000px;}
.ws94{word-spacing:18.810000px;}
.ws93{word-spacing:18.936000px;}
.ws26{word-spacing:20.268000px;}
.ws62{word-spacing:21.600000px;}
.ws54{word-spacing:22.392000px;}
.ws56{word-spacing:22.410000px;}
.ws55{word-spacing:22.536000px;}
.ws5c{word-spacing:24.423552px;}
.ws4d{word-spacing:25.236000px;}
.ws4c{word-spacing:25.308000px;}
.ws4e{word-spacing:25.392000px;}
.ws4f{word-spacing:30.312000px;}
.ws50{word-spacing:30.432000px;}
.ws5f{word-spacing:33.120000px;}
.ws91{word-spacing:34.002000px;}
.ws39{word-spacing:35.316000px;}
.ws3a{word-spacing:35.472000px;}
.ws2d{word-spacing:37.728000px;}
.ws3f{word-spacing:38.196000px;}
.ws2e{word-spacing:38.208000px;}
.ws40{word-spacing:38.358000px;}
.ws3e{word-spacing:38.394000px;}
.ws5e{word-spacing:39.684000px;}
.ws41{word-spacing:39.792000px;}
.ws79{word-spacing:42.246000px;}
.ws58{word-spacing:45.432000px;}
.ws57{word-spacing:45.792000px;}
.ws64{word-spacing:46.836000px;}
.ws63{word-spacing:47.034000px;}
.ws65{word-spacing:47.154000px;}
.ws82{word-spacing:50.526000px;}
.ws81{word-spacing:50.616000px;}
.ws80{word-spacing:50.862000px;}
.ws38{word-spacing:54.080640px;}
.ws85{word-spacing:54.162000px;}
.ws84{word-spacing:54.198000px;}
.ws7e{word-spacing:55.584000px;}
.ws7d{word-spacing:55.656000px;}
.ws7c{word-spacing:55.830000px;}
.ws89{word-spacing:56.797056px;}
.ws60{word-spacing:56.934000px;}
.ws61{word-spacing:57.072000px;}
.ws88{word-spacing:57.672504px;}
.ws87{word-spacing:58.033344px;}
.ws8b{word-spacing:58.482000px;}
.ws8a{word-spacing:58.944000px;}
.ws8c{word-spacing:59.004000px;}
.ws90{word-spacing:60.696000px;}
.ws8f{word-spacing:61.482000px;}
.ws96{word-spacing:63.522000px;}
.ws97{word-spacing:63.792000px;}
.ws95{word-spacing:64.326000px;}
.ws70{word-spacing:65.484000px;}
.ws6f{word-spacing:65.874000px;}
.ws2c{word-spacing:66.636000px;}
.ws1b{word-spacing:68.364000px;}
.ws1c{word-spacing:68.526000px;}
.ws1d{word-spacing:68.682000px;}
.ws6a{word-spacing:74.844000px;}
.ws47{word-spacing:80.100000px;}
.ws2b{word-spacing:84.402000px;}
.ws48{word-spacing:85.770000px;}
.ws49{word-spacing:86.616000px;}
.ws66{word-spacing:87.174000px;}
.ws74{word-spacing:88.266000px;}
.ws72{word-spacing:90.324000px;}
.ws73{word-spacing:90.792000px;}
.ws6c{word-spacing:98.082000px;}
.ws6d{word-spacing:98.112000px;}
.ws83{word-spacing:152.238000px;}
.ws6b{word-spacing:176.124000px;}
.ws37{word-spacing:195.996000px;}
.ws59{word-spacing:215.352000px;}
._25{margin-left:-5.365440px;}
._b{margin-left:-4.050000px;}
._4{margin-left:-2.646000px;}
._3{margin-left:-1.080000px;}
._2{width:1.242000px;}
._9{width:2.268000px;}
._7{width:3.834000px;}
._8{width:4.914000px;}
._5{width:6.048000px;}
._1{width:7.182000px;}
._0{width:8.262000px;}
._6{width:9.558000px;}
._10{width:10.634400px;}
._11{width:11.655360px;}
._e{width:12.850560px;}
._c{width:14.094000px;}
._d{width:15.120000px;}
._1c{width:16.778880px;}
._14{width:17.818560px;}
._15{width:18.918720px;}
._12{width:21.680640px;}
._19{width:23.096640px;}
._18{width:24.111360px;}
._1a{width:25.522560px;}
._1d{width:26.562240px;}
._1b{width:27.953280px;}
._2b{width:29.019600px;}
._26{width:30.934080px;}
._16{width:32.457600px;}
._17{width:33.471360px;}
._2a{width:34.643520px;}
._f{width:35.657280px;}
._29{width:36.880320px;}
._2e{width:38.083200px;}
._1e{width:39.204000px;}
._13{width:42.128640px;}
._27{width:43.804800px;}
._32{width:55.177920px;}
._22{width:57.294000px;}
._2d{width:59.502000px;}
._33{width:65.445120px;}
._34{width:66.975840px;}
._21{width:77.328000px;}
._2c{width:92.352000px;}
._20{width:98.226000px;}
._1f{width:110.538000px;}
._24{width:119.826000px;}
._23{width:139.320000px;}
._31{width:164.075040px;}
._30{width:165.831840px;}
._35{width:192.644640px;}
._2f{width:196.666560px;}
._28{width:199.746000px;}
._a{width:1458.744000px;}
.fc5{color:transparent;}
.fc4{color:rgb(179,44,22);}
.fc9{color:rgb(85,85,85);}
.fc8{color:rgb(127,127,127);}
.fc7{color:rgb(51,51,51);}
.fc6{color:rgb(37,37,37);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(192,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(65,71,81);}
.fs7{font-size:36.000000px;}
.fs8{font-size:38.880000px;}
.fs9{font-size:41.760000px;}
.fsb{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fsa{font-size:54.144000px;}
.fs6{font-size:56.880000px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:113.760000px;}
.fs3{font-size:144.000000px;}
.y34{bottom:-54.360000px;}
.y33{bottom:-18.900000px;}
.y0{bottom:0.000000px;}
.y32{bottom:0.360000px;}
.y3a{bottom:2.340000px;}
.y275{bottom:5.580000px;}
.y10d{bottom:8.454000px;}
.y114{bottom:9.894000px;}
.yfd{bottom:9.900000px;}
.y103{bottom:10.080000px;}
.y257{bottom:11.340000px;}
.y108{bottom:18.180000px;}
.y31{bottom:19.620000px;}
.y39{bottom:20.160000px;}
.y12b{bottom:20.340000px;}
.y126{bottom:20.520000px;}
.y274{bottom:23.580000px;}
.y28{bottom:26.100000px;}
.y10b{bottom:27.900000px;}
.y111{bottom:28.080000px;}
.y254{bottom:29.385000px;}
.y12d{bottom:29.550000px;}
.y113{bottom:32.394000px;}
.yfc{bottom:32.400000px;}
.y118{bottom:32.580000px;}
.y107{bottom:36.180000px;}
.y13e{bottom:37.260000px;}
.y38{bottom:38.160000px;}
.y255{bottom:38.385000px;}
.y129{bottom:38.520000px;}
.y12c{bottom:38.550000px;}
.y30{bottom:38.700000px;}
.y273{bottom:41.625000px;}
.y134{bottom:44.460000px;}
.y116{bottom:45.900000px;}
.y110{bottom:46.080000px;}
.y256{bottom:47.385000px;}
.y112{bottom:50.394000px;}
.y101{bottom:50.400000px;}
.y233{bottom:54.000000px;}
.y106{bottom:54.180000px;}
.yfb{bottom:54.900000px;}
.y2{bottom:55.980000px;}
.y37{bottom:56.160000px;}
.y128{bottom:56.520000px;}
.y109{bottom:58.680000px;}
.y272{bottom:59.625000px;}
.y2f{bottom:60.660000px;}
.y139{bottom:61.065000px;}
.y232{bottom:68.220000px;}
.y100{bottom:68.400000px;}
.y1{bottom:68.580000px;}
.y270{bottom:73.125000px;}
.y3d{bottom:74.736000px;}
.y36{bottom:75.780000px;}
.y105{bottom:76.680000px;}
.yfa{bottom:77.400000px;}
.y133{bottom:77.580000px;}
.y271{bottom:77.625000px;}
.y138{bottom:79.065000px;}
.y231{bottom:82.260000px;}
.y2e{bottom:82.800000px;}
.yff{bottom:86.400000px;}
.y124{bottom:88.050000px;}
.y104{bottom:94.680000px;}
.y132{bottom:95.580000px;}
.y26f{bottom:95.625000px;}
.y230{bottom:96.300000px;}
.yf9{bottom:99.900000px;}
.y2d{bottom:101.880000px;}
.yfe{bottom:104.400000px;}
.y123{bottom:106.050000px;}
.y22f{bottom:110.520000px;}
.y26e{bottom:113.625000px;}
.y2c{bottom:121.170000px;}
.yf8{bottom:122.580000px;}
.y22e{bottom:124.560000px;}
.y130{bottom:127.125000px;}
.y93{bottom:130.896000px;}
.y26d{bottom:131.805000px;}
.yd3{bottom:133.236000px;}
.y1e6{bottom:134.136000px;}
.y1aa{bottom:134.316000px;}
.y18a{bottom:136.116000px;}
.y22d{bottom:138.780000px;}
.y2b{bottom:140.250000px;}
.y157{bottom:141.336000px;}
.y21{bottom:141.516000px;}
.yba{bottom:142.056000px;}
.y10c{bottom:142.236000px;}
.y12f{bottom:145.125000px;}
.y1cb{bottom:145.296000px;}
.y121{bottom:145.476000px;}
.y92{bottom:147.816000px;}
.y189{bottom:148.176000px;}
.y26c{bottom:149.805000px;}
.y2a9{bottom:150.150000px;}
.y69{bottom:150.510000px;}
.y1fd{bottom:151.410000px;}
.y22c{bottom:152.820000px;}
.yd2{bottom:155.010000px;}
.y16a{bottom:156.090000px;}
.y1a9{bottom:156.270000px;}
.y1e5{bottom:156.450000px;}
.y20{bottom:159.510000px;}
.y2ef{bottom:160.410000px;}
.y91{bottom:163.470000px;}
.y28b{bottom:163.650000px;}
.yb9{bottom:164.370000px;}
.y22b{bottom:166.860000px;}
.y26b{bottom:167.805000px;}
.y2c2{bottom:168.330000px;}
.y19c{bottom:170.490000px;}
.y68{bottom:172.470000px;}
.y207{bottom:172.650000px;}
.y1fc{bottom:173.370000px;}
.y1f{bottom:177.510000px;}
.y1a8{bottom:178.410000px;}
.y2a{bottom:178.590000px;}
.y90{bottom:179.490000px;}
.y22a{bottom:181.080000px;}
.y1ca{bottom:182.190000px;}
.y120{bottom:182.550000px;}
.y8f{bottom:184.710000px;}
.y156{bottom:185.430000px;}
.y26a{bottom:185.805000px;}
.yb8{bottom:186.330000px;}
.y2c1{bottom:190.650000px;}
.yd1{bottom:192.270000px;}
.y19b{bottom:192.450000px;}
.y169{bottom:193.170000px;}
.y67{bottom:194.430000px;}
.y206{bottom:194.970000px;}
.y229{bottom:195.120000px;}
.y1e{bottom:195.510000px;}
.y8e{bottom:196.950000px;}
.y2dc{bottom:197.490000px;}
.y1e4{bottom:200.370000px;}
.y28a{bottom:200.730000px;}
.y269{bottom:203.805000px;}
.y2ee{bottom:204.690000px;}
.y155{bottom:207.390000px;}
.y287{bottom:208.305000px;}
.yb7{bottom:208.470000px;}
.y188{bottom:209.550000px;}
.y10f{bottom:210.450000px;}
.y2c0{bottom:212.610000px;}
.y1d{bottom:213.510000px;}
.yd0{bottom:214.410000px;}
.y228{bottom:214.770000px;}
.y1a7{bottom:215.310000px;}
.y168{bottom:215.490000px;}
.y66{bottom:216.570000px;}
.y205{bottom:216.930000px;}
.y1fb{bottom:217.470000px;}
.y11f{bottom:218.550000px;}
.y1c9{bottom:219.270000px;}
.y2db{bottom:219.630000px;}
.y268{bottom:221.805000px;}
.y1e3{bottom:222.510000px;}
.y286{bottom:226.305000px;}
.y227{bottom:228.810000px;}
.y154{bottom:229.530000px;}
.y27{bottom:230.070000px;}
.yb6{bottom:230.430000px;}
.y2a8{bottom:231.330000px;}
.y1c{bottom:231.510000px;}
.y8d{bottom:236.550000px;}
.y167{bottom:237.450000px;}
.y289{bottom:237.630000px;}
.y65{bottom:238.530000px;}
.y204{bottom:238.890000px;}
.y1fa{bottom:239.430000px;}
.y267{bottom:239.985000px;}
.y1c8{bottom:241.410000px;}
.y226{bottom:243.030000px;}
.y1e2{bottom:244.470000px;}
.y285{bottom:244.485000px;}
.y13d{bottom:246.990000px;}
.y2bf{bottom:249.510000px;}
.y1b{bottom:249.690000px;}
.y153{bottom:251.490000px;}
.yb5{bottom:252.390000px;}
.y187{bottom:253.470000px;}
.y24d{bottom:255.495000px;}
.y2da{bottom:256.530000px;}
.y225{bottom:257.070000px;}
.y266{bottom:257.985000px;}
.y8c{bottom:258.510000px;}
.y166{bottom:259.410000px;}
.y64{bottom:260.670000px;}
.y203{bottom:261.030000px;}
.y1f9{bottom:261.570000px;}
.y284{bottom:262.485000px;}
.y26{bottom:263.190000px;}
.y1c7{bottom:263.550000px;}
.y293{bottom:266.430000px;}
.y1e1{bottom:266.610000px;}
.y1a{bottom:267.690000px;}
.y24c{bottom:269.715000px;}
.y224{bottom:271.110000px;}
.y288{bottom:271.485000px;}
.y2be{bottom:271.650000px;}
.y152{bottom:273.630000px;}
.y10e{bottom:274.350000px;}
.yb4{bottom:274.530000px;}
.y186{bottom:275.610000px;}
.y265{bottom:275.985000px;}
.y2ed{bottom:278.490000px;}
.y2d9{bottom:278.670000px;}
.y283{bottom:280.485000px;}
.y8b{bottom:280.650000px;}
.y13f{bottom:280.830000px;}
.y165{bottom:281.550000px;}
.y63{bottom:282.630000px;}
.y24b{bottom:283.755000px;}
.y223{bottom:285.330000px;}
.y1c6{bottom:285.510000px;}
.y19{bottom:285.690000px;}
.y25{bottom:287.130000px;}
.y1e0{bottom:288.570000px;}
.y2bd{bottom:293.790000px;}
.y264{bottom:293.985000px;}
.y151{bottom:295.590000px;}
.yb3{bottom:296.490000px;}
.y202{bottom:296.850000px;}
.y185{bottom:297.570000px;}
.y24a{bottom:297.975000px;}
.y1f8{bottom:298.290000px;}
.y282{bottom:298.485000px;}
.y222{bottom:299.370000px;}
.y2d8{bottom:300.810000px;}
.y10a{bottom:302.070000px;}
.y19a{bottom:302.610000px;}
.y164{bottom:303.510000px;}
.y18{bottom:303.690000px;}
.y62{bottom:304.590000px;}
.y1c5{bottom:307.650000px;}
.y1df{bottom:310.530000px;}
.y2a3{bottom:311.250000px;}
.y263{bottom:312.015000px;}
.y2a7{bottom:312.330000px;}
.y221{bottom:313.590000px;}
.y12e{bottom:314.490000px;}
.y201{bottom:314.850000px;}
.y2ec{bottom:315.570000px;}
.y281{bottom:316.515000px;}
.y8a{bottom:317.370000px;}
.y249{bottom:317.415000px;}
.y150{bottom:317.550000px;}
.y24{bottom:318.450000px;}
.yb2{bottom:318.630000px;}
.y184{bottom:319.710000px;}
.y1f7{bottom:320.610000px;}
.y17{bottom:321.690000px;}
.y2d7{bottom:322.770000px;}
.y24e{bottom:323.610000px;}
.y199{bottom:324.570000px;}
.y1a6{bottom:325.650000px;}
.y61{bottom:326.730000px;}
.y208{bottom:327.600000px;}
.y1c4{bottom:329.610000px;}
.y262{bottom:330.015000px;}
.y2bc{bottom:330.510000px;}
.y248{bottom:331.635000px;}
.y292{bottom:332.670000px;}
.y220{bottom:333.030000px;}
.y2a2{bottom:333.570000px;}
.y280{bottom:334.515000px;}
.y2eb{bottom:337.755000px;}
.y16{bottom:339.735000px;}
.y163{bottom:340.455000px;}
.yb1{bottom:340.635000px;}
.y200{bottom:345.315000px;}
.y247{bottom:345.675000px;}
.y198{bottom:346.755000px;}
.y21f{bottom:347.250000px;}
.y1de{bottom:347.475000px;}
.y13c{bottom:347.655000px;}
.yf7{bottom:348.015000px;}
.y2a6{bottom:349.095000px;}
.y1c3{bottom:351.615000px;}
.y27f{bottom:352.515000px;}
.y2bb{bottom:352.875000px;}
.y250{bottom:354.135000px;}
.ycf{bottom:354.495000px;}
.y291{bottom:354.675000px;}
.y2a1{bottom:355.575000px;}
.y183{bottom:356.475000px;}
.y1f6{bottom:357.555000px;}
.y15{bottom:357.735000px;}
.y2d6{bottom:359.715000px;}
.y246{bottom:359.895000px;}
.y89{bottom:361.695000px;}
.yb0{bottom:362.595000px;}
.y60{bottom:363.495000px;}
.y261{bottom:366.195000px;}
.y23{bottom:366.510000px;}
.y21e{bottom:366.870000px;}
.y197{bottom:368.715000px;}
.y1a5{bottom:369.615000px;}
.y1dd{bottom:369.795000px;}
.y27e{bottom:370.695000px;}
.y1c2{bottom:373.755000px;}
.y245{bottom:373.965000px;}
.y2ea{bottom:374.655000px;}
.y2ba{bottom:374.835000px;}
.y14{bottom:375.915000px;}
.yce{bottom:376.635000px;}
.y2a0{bottom:377.715000px;}
.y182{bottom:378.795000px;}
.y1f5{bottom:379.695000px;}
.y13b{bottom:380.595000px;}
.y21d{bottom:380.910000px;}
.y2d5{bottom:381.855000px;}
.y88{bottom:383.835000px;}
.y260{bottom:384.195000px;}
.y2a5{bottom:384.555000px;}
.yaf{bottom:384.735000px;}
.y5f{bottom:385.815000px;}
.y244{bottom:388.005000px;}
.y27d{bottom:388.695000px;}
.y290{bottom:391.575000px;}
.y1a4{bottom:391.755000px;}
.y24f{bottom:392.115000px;}
.y21c{bottom:394.950000px;}
.y1c1{bottom:395.715000px;}
.y2b9{bottom:396.795000px;}
.ycd{bottom:398.775000px;}
.y29f{bottom:399.675000px;}
.y181{bottom:400.755000px;}
.y1f4{bottom:401.655000px;}
.y25f{bottom:402.195000px;}
.y243{bottom:402.225000px;}
.y196{bottom:405.615000px;}
.y87{bottom:405.795000px;}
.yae{bottom:406.695000px;}
.y5e{bottom:407.775000px;}
.y21b{bottom:409.170000px;}
.y13{bottom:409.755000px;}
.y13a{bottom:413.715000px;}
.y242{bottom:416.265000px;}
.y1c0{bottom:417.855000px;}
.y2d4{bottom:418.755000px;}
.y2e9{bottom:418.935000px;}
.y25e{bottom:420.195000px;}
.ycc{bottom:420.735000px;}
.y29e{bottom:421.635000px;}
.y180{bottom:422.895000px;}
.y21a{bottom:423.210000px;}
.y1f3{bottom:423.795000px;}
.y27c{bottom:424.695000px;}
.y86{bottom:427.755000px;}
.yad{bottom:428.835000px;}
.y5d{bottom:429.915000px;}
.y2b8{bottom:433.695000px;}
.y1a3{bottom:435.855000px;}
.y241{bottom:435.885000px;}
.y219{bottom:437.430000px;}
.y25d{bottom:438.195000px;}
.y1bf{bottom:439.815000px;}
.y2d3{bottom:440.895000px;}
.y27b{bottom:442.695000px;}
.ycb{bottom:442.875000px;}
.y29d{bottom:443.775000px;}
.y17f{bottom:444.855000px;}
.y1f2{bottom:445.755000px;}
.y131{bottom:446.655000px;}
.y12{bottom:446.835000px;}
.y85{bottom:449.895000px;}
.y240{bottom:449.925000px;}
.yac{bottom:450.795000px;}
.y5c{bottom:451.875000px;}
.y2e8{bottom:455.835000px;}
.y2b7{bottom:456.015000px;}
.y25c{bottom:456.195000px;}
.y218{bottom:456.870000px;}
.y1a2{bottom:457.815000px;}
.y102{bottom:460.515000px;}
.y27a{bottom:460.695000px;}
.y1be{bottom:461.775000px;}
.y2d2{bottom:463.035000px;}
.y23f{bottom:464.145000px;}
.yca{bottom:464.835000px;}
.y29c{bottom:465.735000px;}
.y17e{bottom:466.815000px;}
.y1f1{bottom:467.895000px;}
.y217{bottom:471.090000px;}
.y22{bottom:471.315000px;}
.y84{bottom:471.855000px;}
.yab{bottom:472.755000px;}
.y5b{bottom:473.835000px;}
.y25b{bottom:474.195000px;}
.y2e7{bottom:477.975000px;}
.y23e{bottom:478.185000px;}
.y279{bottom:478.695000px;}
.y137{bottom:479.775000px;}
.y1dc{bottom:479.955000px;}
.y11{bottom:483.555000px;}
.y1bd{bottom:483.915000px;}
.y216{bottom:485.175000px;}
.yc9{bottom:486.795000px;}
.y29b{bottom:487.875000px;}
.y17d{bottom:488.955000px;}
.y1f0{bottom:489.855000px;}
.y29{bottom:491.835000px;}
.y25a{bottom:492.375000px;}
.y2b6{bottom:492.735000px;}
.y83{bottom:493.995000px;}
.yaa{bottom:494.895000px;}
.y5a{bottom:495.975000px;}
.y278{bottom:496.875000px;}
.y23d{bottom:497.805000px;}
.y215{bottom:499.395000px;}
.y2d1{bottom:499.755000px;}
.y2e6{bottom:499.935000px;}
.y1db{bottom:501.915000px;}
.y1bc{bottom:505.875000px;}
.y14f{bottom:508.755000px;}
.yc8{bottom:508.935000px;}
.yf6{bottom:509.295000px;}
.y29a{bottom:509.835000px;}
.y259{bottom:510.375000px;}
.y17c{bottom:510.915000px;}
.y1ef{bottom:511.815000px;}
.y23c{bottom:511.845000px;}
.y136{bottom:512.715000px;}
.y277{bottom:514.875000px;}
.y195{bottom:515.955000px;}
.y1a1{bottom:516.675000px;}
.y162{bottom:516.855000px;}
.y59{bottom:517.935000px;}
.y10{bottom:518.835000px;}
.y2d0{bottom:522.075000px;}
.yed{bottom:522.795000px;}
.y1da{bottom:523.875000px;}
.y23b{bottom:526.065000px;}
.y258{bottom:528.375000px;}
.yf5{bottom:528.735000px;}
.y2b5{bottom:529.815000px;}
.y82{bottom:530.715000px;}
.yc7{bottom:530.895000px;}
.ya9{bottom:531.615000px;}
.y299{bottom:531.795000px;}
.y276{bottom:532.875000px;}
.y17b{bottom:533.055000px;}
.y1ee{bottom:533.955000px;}
.y194{bottom:537.915000px;}
.y161{bottom:538.995000px;}
.y1bb{bottom:542.775000px;}
.y2cf{bottom:544.035000px;}
.y23a{bottom:545.685000px;}
.y135{bottom:545.835000px;}
.y1d9{bottom:546.015000px;}
.y214{bottom:547.095000px;}
.y2b4{bottom:551.955000px;}
.y81{bottom:553.035000px;}
.ya8{bottom:553.935000px;}
.y58{bottom:554.835000px;}
.y17a{bottom:555.015000px;}
.yf{bottom:555.915000px;}
.y2e5{bottom:558.975000px;}
.y239{bottom:559.725000px;}
.yec{bottom:559.875000px;}
.y192{bottom:560.055000px;}
.y160{bottom:560.955000px;}
.y213{bottom:561.315000px;}
.yf4{bottom:562.755000px;}
.y1ba{bottom:564.915000px;}
.y193{bottom:566.895000px;}
.y1d8{bottom:567.975000px;}
.y1ed{bottom:570.315000px;}
.y238{bottom:573.765000px;}
.y80{bottom:574.995000px;}
.y212{bottom:575.355000px;}
.ya7{bottom:575.895000px;}
.y179{bottom:576.975000px;}
.y122{bottom:579.495000px;}
.y2ce{bottom:580.935000px;}
.y2e4{bottom:581.115000px;}
.yeb{bottom:582.195000px;}
.y15f{bottom:582.915000px;}
.yf3{bottom:585.075000px;}
.y1b9{bottom:587.055000px;}
.y2b3{bottom:588.855000px;}
.y211{bottom:589.395000px;}
.y28f{bottom:589.935000px;}
.y1d7{bottom:590.115000px;}
.y1ec{bottom:590.475000px;}
.y57{bottom:590.835000px;}
.ye{bottom:592.995000px;}
.y237{bottom:593.385000px;}
.y191{bottom:596.775000px;}
.y7f{bottom:596.955000px;}
.ya6{bottom:598.035000px;}
.y178{bottom:599.115000px;}
.y2cd{bottom:603.075000px;}
.yea{bottom:604.185000px;}
.y15e{bottom:605.085000px;}
.yf2{bottom:607.065000px;}
.y236{bottom:607.605000px;}
.y210{bottom:609.015000px;}
.y1b8{bottom:609.045000px;}
.y1eb{bottom:610.485000px;}
.y2b2{bottom:611.205000px;}
.y1d6{bottom:612.105000px;}
.y2e3{bottom:618.045000px;}
.y7e{bottom:619.125000px;}
.ya5{bottom:620.025000px;}
.y177{bottom:621.105000px;}
.y235{bottom:621.645000px;}
.y20f{bottom:623.235000px;}
.y56{bottom:624.525000px;}
.ye9{bottom:626.145000px;}
.y15d{bottom:627.045000px;}
.yf1{bottom:629.025000px;}
.yd{bottom:630.105000px;}
.y1ea{bottom:630.465000px;}
.y12a{bottom:630.645000px;}
.y1b7{bottom:631.185000px;}
.y2b1{bottom:633.165000px;}
.y234{bottom:635.685000px;}
.y20e{bottom:637.275000px;}
.y2cc{bottom:640.005000px;}
.y14e{bottom:641.085000px;}
.ya4{bottom:641.985000px;}
.y302{bottom:643.965000px;}
.ye8{bottom:648.285000px;}
.y1d5{bottom:649.005000px;}
.y1a0{bottom:649.185000px;}
.y1e9{bottom:650.625000px;}
.yf0{bottom:651.165000px;}
.y20d{bottom:651.315000px;}
.y1b6{bottom:653.145000px;}
.y2e2{bottom:654.945000px;}
.y7d{bottom:656.025000px;}
.y176{bottom:658.005000px;}
.y55{bottom:659.085000px;}
.y2cb{bottom:662.145000px;}
.y14d{bottom:663.225000px;}
.y127{bottom:663.585000px;}
.y15c{bottom:663.945000px;}
.ya3{bottom:664.125000px;}
.y301{bottom:666.285000px;}
.yc{bottom:667.005000px;}
.y2b0{bottom:670.065000px;}
.y20c{bottom:670.935000px;}
.y19f{bottom:671.145000px;}
.yef{bottom:673.125000px;}
.y54{bottom:677.085000px;}
.y2e1{bottom:677.265000px;}
.y7c{bottom:678.165000px;}
.y175{bottom:680.145000px;}
.y2ca{bottom:684.285000px;}
.ye7{bottom:685.005000px;}
.y20b{bottom:685.155000px;}
.y14c{bottom:685.185000px;}
.y1e8{bottom:685.905000px;}
.ya2{bottom:686.085000px;}
.y300{bottom:688.245000px;}
.y1b5{bottom:690.045000px;}
.y2af{bottom:692.205000px;}
.y28e{bottom:693.105000px;}
.y1d4{bottom:693.285000px;}
.y53{bottom:695.085000px;}
.yee{bottom:695.265000px;}
.y20a{bottom:699.195000px;}
.y7b{bottom:700.125000px;}
.y174{bottom:702.285000px;}
.yb{bottom:704.085000px;}
.y14b{bottom:707.145000px;}
.ye6{bottom:707.325000px;}
.y19e{bottom:708.045000px;}
.ya1{bottom:708.225000px;}
.y2ff{bottom:710.385000px;}
.y1b4{bottom:712.185000px;}
.y52{bottom:713.085000px;}
.y209{bottom:713.235000px;}
.y2e0{bottom:714.165000px;}
.y2ae{bottom:714.345000px;}
.y1d3{bottom:715.245000px;}
.y2c9{bottom:721.185000px;}
.y7a{bottom:722.265000px;}
.y298{bottom:722.985000px;}
.ye5{bottom:729.285000px;}
.ya0{bottom:730.185000px;}
.y51{bottom:731.085000px;}
.y125{bottom:732.705000px;}
.y1b3{bottom:734.325000px;}
.y2ad{bottom:736.305000px;}
.y1d2{bottom:737.205000px;}
.y173{bottom:738.645000px;}
.ya{bottom:741.165000px;}
.y2c8{bottom:743.325000px;}
.y79{bottom:744.225000px;}
.y297{bottom:745.125000px;}
.y2fe{bottom:747.105000px;}
.y50{bottom:749.085000px;}
.y2df{bottom:751.065000px;}
.y14a{bottom:751.245000px;}
.ye4{bottom:751.425000px;}
.y9f{bottom:752.145000px;}
.y172{bottom:758.805000px;}
.y1d1{bottom:759.345000px;}
.y190{bottom:766.185000px;}
.y78{bottom:766.365000px;}
.y4f{bottom:767.085000px;}
.y296{bottom:767.265000px;}
.y1b2{bottom:770.685000px;}
.y2ac{bottom:773.205000px;}
.ye3{bottom:773.385000px;}
.y9e{bottom:774.285000px;}
.y9{bottom:777.705000px;}
.y171{bottom:778.785000px;}
.y2c7{bottom:780.225000px;}
.y28d{bottom:781.305000px;}
.y2fd{bottom:784.185000px;}
.y4e{bottom:785.265000px;}
.y11e{bottom:788.145000px;}
.y77{bottom:788.325000px;}
.y295{bottom:789.225000px;}
.y1b1{bottom:790.665000px;}
.ye2{bottom:795.345000px;}
.y2a4{bottom:796.065000px;}
.y15b{bottom:796.245000px;}
.y170{bottom:798.765000px;}
.y18f{bottom:803.085000px;}
.y4d{bottom:803.265000px;}
.y11d{bottom:806.325000px;}
.y76{bottom:810.285000px;}
.y1b0{bottom:810.825000px;}
.y9d{bottom:811.185000px;}
.y294{bottom:811.365000px;}
.y8{bottom:812.805000px;}
.y2c6{bottom:817.125000px;}
.y149{bottom:817.305000px;}
.ye1{bottom:817.485000px;}
.y15a{bottom:818.385000px;}
.y16f{bottom:818.745000px;}
.y2fc{bottom:820.905000px;}
.y4c{bottom:821.265000px;}
.y18e{bottom:825.405000px;}
.y1af{bottom:830.805000px;}
.y2de{bottom:832.245000px;}
.yc6{bottom:832.425000px;}
.y9c{bottom:833.325000px;}
.y4b{bottom:839.265000px;}
.ye0{bottom:839.445000px;}
.y11c{bottom:840.165000px;}
.y159{bottom:840.345000px;}
.y2fb{bottom:840.885000px;}
.y75{bottom:847.185000px;}
.y18d{bottom:847.365000px;}
.y7{bottom:847.905000px;}
.y253{bottom:848.265000px;}
.y1ae{bottom:850.785000px;}
.y148{bottom:854.205000px;}
.y2dd{bottom:854.385000px;}
.y1e7{bottom:855.105000px;}
.y9b{bottom:855.285000px;}
.y4a{bottom:857.265000px;}
.y16e{bottom:861.045000px;}
.y2c5{bottom:861.405000px;}
.ydf{bottom:861.585000px;}
.y1ff{bottom:862.125000px;}
.y158{bottom:862.305000px;}
.y11b{bottom:862.485000px;}
.yc5{bottom:869.325000px;}
.y18c{bottom:869.505000px;}
.y1ad{bottom:870.990000px;}
.y49{bottom:875.310000px;}
.y2fa{bottom:875.850000px;}
.y2ab{bottom:876.390000px;}
.y147{bottom:876.570000px;}
.y9a{bottom:877.470000px;}
.y6{bottom:882.870000px;}
.yde{bottom:883.590000px;}
.y74{bottom:884.310000px;}
.y11a{bottom:884.490000px;}
.yc4{bottom:891.510000px;}
.y48{bottom:893.490000px;}
.y2f9{bottom:896.010000px;}
.y35{bottom:896.190000px;}
.y2c4{bottom:898.350000px;}
.y146{bottom:898.530000px;}
.y1d0{bottom:898.890000px;}
.y99{bottom:899.430000px;}
.y1ac{bottom:906.270000px;}
.y73{bottom:906.450000px;}
.y47{bottom:911.490000px;}
.y16d{bottom:913.290000px;}
.yc3{bottom:913.470000px;}
.y5{bottom:917.970000px;}
.y1cf{bottom:919.050000px;}
.ydd{bottom:920.490000px;}
.y98{bottom:921.570000px;}
.y18b{bottom:928.410000px;}
.y72{bottom:928.590000px;}
.y46{bottom:929.490000px;}
.y2f8{bottom:930.930000px;}
.y252{bottom:935.430000px;}
.yc2{bottom:935.610000px;}
.y1ce{bottom:939.030000px;}
.ydc{bottom:942.450000px;}
.y145{bottom:942.630000px;}
.y1fe{bottom:943.350000px;}
.y97{bottom:943.530000px;}
.y45{bottom:947.490000px;}
.y16c{bottom:950.370000px;}
.y71{bottom:950.550000px;}
.y2f7{bottom:951.090000px;}
.y4{bottom:953.430000px;}
.y2aa{bottom:957.390000px;}
.yc1{bottom:957.570000px;}
.y1cd{bottom:959.010000px;}
.ydb{bottom:964.950000px;}
.y44{bottom:965.490000px;}
.y2f6{bottom:971.070000px;}
.y70{bottom:972.690000px;}
.y144{bottom:979.530000px;}
.yc0{bottom:979.710000px;}
.y43{bottom:983.490000px;}
.yda{bottom:986.730000px;}
.y251{bottom:987.450000px;}
.y96{bottom:987.630000px;}
.y3{bottom:988.170000px;}
.y1cc{bottom:994.470000px;}
.y6f{bottom:994.650000px;}
.ybf{bottom:1001.670000px;}
.y2f5{bottom:1006.170000px;}
.y119{bottom:1008.510000px;}
.yd9{bottom:1009.230000px;}
.y19d{bottom:1009.410000px;}
.y95{bottom:1009.590000px;}
.y143{bottom:1016.430000px;}
.y16b{bottom:1016.610000px;}
.y42{bottom:1017.150000px;}
.y117{bottom:1021.830000px;}
.ybe{bottom:1023.630000px;}
.y2f4{bottom:1026.150000px;}
.yd8{bottom:1031.190000px;}
.y6e{bottom:1031.550000px;}
.y94{bottom:1031.730000px;}
.y2c3{bottom:1038.570000px;}
.y142{bottom:1038.750000px;}
.ybd{bottom:1045.770000px;}
.y2f3{bottom:1046.130000px;}
.y41{bottom:1052.070000px;}
.yd7{bottom:1053.150000px;}
.y1ab{bottom:1053.510000px;}
.y6d{bottom:1053.690000px;}
.y28c{bottom:1060.530000px;}
.y141{bottom:1060.710000px;}
.y115{bottom:1072.230000px;}
.yd6{bottom:1075.470000px;}
.y6c{bottom:1075.650000px;}
.y2f2{bottom:1081.230000px;}
.ybc{bottom:1082.670000px;}
.y140{bottom:1082.850000px;}
.y40{bottom:1086.630000px;}
.yd5{bottom:1097.610000px;}
.y6b{bottom:1097.790000px;}
.y2f1{bottom:1101.210000px;}
.y3f{bottom:1104.630000px;}
.yd4{bottom:1119.390000px;}
.ybb{bottom:1119.570000px;}
.y6a{bottom:1119.750000px;}
.y2f0{bottom:1121.190000px;}
.y3e{bottom:1122.630000px;}
.y3c{bottom:1179.000000px;}
.y3b{bottom:1197.180000px;}
.h1c{height:27.000000px;}
.h18{height:27.180000px;}
.h24{height:32.940000px;}
.h22{height:33.120000px;}
.h29{height:33.156000px;}
.h13{height:33.714844px;}
.h14{height:36.412031px;}
.h2c{height:38.293594px;}
.h2b{height:39.109219px;}
.h2{height:44.236406px;}
.h1a{height:45.036000px;}
.h10{height:49.033125px;}
.h8{height:49.517578px;}
.h20{height:49.680000px;}
.h3{height:50.572266px;}
.h2e{height:50.707125px;}
.h25{height:51.156000px;}
.h12{height:52.048828px;}
.h11{height:54.799453px;}
.h31{height:55.503491px;}
.h6{height:55.966641px;}
.h7{height:60.741562px;}
.h4{height:62.035312px;}
.h1f{height:63.000000px;}
.h1d{height:63.180000px;}
.h5{height:63.846562px;}
.h2f{height:65.916000px;}
.hf{height:66.023438px;}
.h2a{height:66.780000px;}
.hc{height:67.429688px;}
.h1e{height:67.500000px;}
.h16{height:68.084282px;}
.h15{height:68.956875px;}
.h23{height:69.120000px;}
.he{height:92.700000px;}
.hb{height:109.649531px;}
.h19{height:111.780000px;}
.ha{height:132.046875px;}
.h27{height:132.120000px;}
.h28{height:132.156000px;}
.h17{height:139.680000px;}
.h1b{height:159.120000px;}
.h21{height:186.330000px;}
.hd{height:194.070000px;}
.h26{height:264.270000px;}
.h9{height:405.435000px;}
.h30{height:545.475000px;}
.h2d{height:807.660000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:50.220000px;}
.w8{width:73.980000px;}
.wb{width:86.400000px;}
.w9{width:88.776000px;}
.wd{width:97.200000px;}
.wc{width:113.076000px;}
.wf{width:128.376000px;}
.w13{width:148.860000px;}
.w15{width:159.510000px;}
.w14{width:170.130000px;}
.w7{width:178.590000px;}
.w12{width:212.430000px;}
.w10{width:212.610000px;}
.w11{width:212.790000px;}
.wa{width:296.670000px;}
.w5{width:309.315000px;}
.w4{width:412.275000px;}
.w3{width:651.345000px;}
.w6{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x32{left:-5.760000px;}
.x0{left:0.000000px;}
.xf{left:8.100000px;}
.x4{left:10.800000px;}
.x19{left:21.060000px;}
.x2f{left:24.870000px;}
.x1e{left:33.480000px;}
.x31{left:35.640000px;}
.x15{left:37.260000px;}
.x1b{left:39.600000px;}
.x1f{left:40.860000px;}
.x16{left:43.200000px;}
.x1d{left:45.000000px;}
.x18{left:48.420000px;}
.x1c{left:52.920000px;}
.x17{left:56.520000px;}
.x3{left:113.436000px;}
.x20{left:122.256000px;}
.x2{left:127.655987px;}
.xd{left:132.695987px;}
.xe{left:154.469987px;}
.x23{left:163.109973px;}
.x24{left:168.509987px;}
.x1a{left:177.870000px;}
.x9{left:180.749987px;}
.x5{left:192.279000px;}
.x25{left:207.749987px;}
.x2a{left:225.539987px;}
.x2d{left:276.870000px;}
.x28{left:288.149987px;}
.x10{left:306.255000px;}
.x6{left:325.155000px;}
.x21{left:334.875000px;}
.xc{left:343.694987px;}
.x11{left:380.235000px;}
.x26{left:387.074987px;}
.xa{left:405.254973px;}
.xb{left:409.934987px;}
.x2e{left:447.015000px;}
.x7{left:460.695000px;}
.x12{left:469.005000px;}
.x29{left:507.239987px;}
.x22{left:547.665000px;}
.x13{left:555.405000px;}
.x30{left:617.145000px;}
.x14{left:668.490000px;}
.x8{left:717.989987px;}
.x2c{left:747.614987px;}
.x2b{left:761.654987px;}
.x1{left:765.689987px;}
.x27{left:801.869987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls35{letter-spacing:-0.608000pt;}
.ls33{letter-spacing:-0.496000pt;}
.ls2c{letter-spacing:-0.489067pt;}
.ls42{letter-spacing:-0.405867pt;}
.ls24{letter-spacing:-0.281600pt;}
.ls31{letter-spacing:-0.240000pt;}
.ls3c{letter-spacing:-0.199467pt;}
.ls28{letter-spacing:-0.195733pt;}
.ls17{letter-spacing:-0.192000pt;}
.ls10{letter-spacing:-0.166400pt;}
.ls1f{letter-spacing:-0.156267pt;}
.lsf{letter-spacing:-0.148267pt;}
.ls8{letter-spacing:-0.133333pt;}
.ls1c{letter-spacing:-0.122667pt;}
.ls29{letter-spacing:-0.117867pt;}
.lsd{letter-spacing:-0.097067pt;}
.ls20{letter-spacing:-0.089600pt;}
.ls30{letter-spacing:-0.080000pt;}
.ls36{letter-spacing:-0.037867pt;}
.ls21{letter-spacing:-0.023040pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.010880pt;}
.ls5{letter-spacing:0.032000pt;}
.ls15{letter-spacing:0.056533pt;}
.ls2e{letter-spacing:0.080000pt;}
.ls11{letter-spacing:0.096000pt;}
.ls1a{letter-spacing:0.135467pt;}
.ls4{letter-spacing:0.141440pt;}
.ls2f{letter-spacing:0.144000pt;}
.ls25{letter-spacing:0.150933pt;}
.ls2{letter-spacing:0.151040pt;}
.ls16{letter-spacing:0.160000pt;}
.ls22{letter-spacing:0.171733pt;}
.ls3{letter-spacing:0.192000pt;}
.lsa{letter-spacing:0.196267pt;}
.ls1{letter-spacing:0.197120pt;}
.ls7{letter-spacing:0.197333pt;}
.ls0{letter-spacing:0.256000pt;}
.lsc{letter-spacing:0.272000pt;}
.ls26{letter-spacing:0.291733pt;}
.ls9{letter-spacing:0.296533pt;}
.ls12{letter-spacing:0.304000pt;}
.ls19{letter-spacing:0.311040pt;}
.ls27{letter-spacing:0.344960pt;}
.ls2a{letter-spacing:0.345067pt;}
.ls3d{letter-spacing:0.357120pt;}
.ls41{letter-spacing:0.489600pt;}
.ls34{letter-spacing:0.720000pt;}
.ls32{letter-spacing:0.784000pt;}
.ls3b{letter-spacing:1.477120pt;}
.ls40{letter-spacing:5.130880pt;}
.ls39{letter-spacing:6.597120pt;}
.ls2b{letter-spacing:7.237120pt;}
.ls1d{letter-spacing:9.157120pt;}
.ls3a{letter-spacing:9.797120pt;}
.ls3f{letter-spacing:11.530880pt;}
.lse{letter-spacing:13.450880pt;}
.ls2d{letter-spacing:23.056000pt;}
.ls13{letter-spacing:23.290027pt;}
.ls18{letter-spacing:23.951360pt;}
.ls23{letter-spacing:27.151360pt;}
.ls1e{letter-spacing:30.351360pt;}
.lsb{letter-spacing:55.311360pt;}
.ls37{letter-spacing:57.696000pt;}
.ls38{letter-spacing:57.802667pt;}
.ls14{letter-spacing:60.431360pt;}
.ls3e{letter-spacing:171.717120pt;}
.ws0{word-spacing:-38.528000pt;}
.ws5{word-spacing:-19.520000pt;}
.ws3{word-spacing:-19.264000pt;}
.ws17{word-spacing:-18.014613pt;}
.ws15{word-spacing:-17.894613pt;}
.wse{word-spacing:-17.779413pt;}
.ws1{word-spacing:-17.722880pt;}
.ws14{word-spacing:-17.699840pt;}
.ws19{word-spacing:-17.605013pt;}
.ws2{word-spacing:-17.589547pt;}
.wsa{word-spacing:-17.574613pt;}
.ws13{word-spacing:-17.566613pt;}
.wsb{word-spacing:-17.556480pt;}
.ws99{word-spacing:-17.523413pt;}
.ws16{word-spacing:-17.441280pt;}
.ws1a{word-spacing:-16.334187pt;}
.ws9{word-spacing:-16.271573pt;}
.ws9a{word-spacing:-15.989120pt;}
.ws18{word-spacing:-15.793387pt;}
.ws9b{word-spacing:-15.583253pt;}
.ws4{word-spacing:-15.515093pt;}
.ws6{word-spacing:-15.414827pt;}
.ws10{word-spacing:-14.640000pt;}
.ws11{word-spacing:-14.608000pt;}
.wsd{word-spacing:-14.544000pt;}
.ws7{word-spacing:-14.480000pt;}
.wsc{word-spacing:-14.448000pt;}
.ws12{word-spacing:-14.256000pt;}
.ws98{word-spacing:-14.208000pt;}
.ws4b{word-spacing:-0.608000pt;}
.ws7b{word-spacing:-0.576000pt;}
.ws6e{word-spacing:-0.352000pt;}
.ws25{word-spacing:-0.320000pt;}
.ws3b{word-spacing:-0.208000pt;}
.wsf{word-spacing:-0.058880pt;}
.ws8{word-spacing:0.000000pt;}
.ws1f{word-spacing:0.064000pt;}
.ws20{word-spacing:0.080000pt;}
.ws1e{word-spacing:0.096000pt;}
.ws86{word-spacing:0.176000pt;}
.ws5d{word-spacing:0.184320pt;}
.ws7a{word-spacing:0.314667pt;}
.ws3d{word-spacing:0.368000pt;}
.ws29{word-spacing:0.432000pt;}
.ws2a{word-spacing:0.784000pt;}
.ws4a{word-spacing:0.816000pt;}
.ws3c{word-spacing:0.832000pt;}
.ws52{word-spacing:1.984000pt;}
.ws51{word-spacing:2.000000pt;}
.ws53{word-spacing:2.256000pt;}
.ws75{word-spacing:2.608000pt;}
.ws76{word-spacing:2.624000pt;}
.ws77{word-spacing:2.912000pt;}
.ws28{word-spacing:3.248000pt;}
.ws27{word-spacing:4.592000pt;}
.ws32{word-spacing:4.874667pt;}
.ws7f{word-spacing:5.136000pt;}
.ws78{word-spacing:5.792000pt;}
.ws31{word-spacing:5.824000pt;}
.ws2f{word-spacing:5.856000pt;}
.ws30{word-spacing:5.952000pt;}
.ws21{word-spacing:7.824000pt;}
.ws24{word-spacing:7.978667pt;}
.ws22{word-spacing:8.512000pt;}
.ws23{word-spacing:8.736000pt;}
.ws5a{word-spacing:8.976000pt;}
.ws5b{word-spacing:9.024000pt;}
.ws42{word-spacing:9.056000pt;}
.ws71{word-spacing:11.664000pt;}
.ws8d{word-spacing:12.864000pt;}
.ws8e{word-spacing:12.944000pt;}
.ws68{word-spacing:14.784000pt;}
.ws67{word-spacing:14.832000pt;}
.ws69{word-spacing:14.912000pt;}
.ws35{word-spacing:14.960000pt;}
.ws36{word-spacing:15.152000pt;}
.ws34{word-spacing:15.424000pt;}
.ws33{word-spacing:15.440000pt;}
.ws46{word-spacing:15.530667pt;}
.ws45{word-spacing:15.872000pt;}
.ws43{word-spacing:16.032000pt;}
.ws44{word-spacing:16.064000pt;}
.ws92{word-spacing:16.672000pt;}
.ws94{word-spacing:16.720000pt;}
.ws93{word-spacing:16.832000pt;}
.ws26{word-spacing:18.016000pt;}
.ws62{word-spacing:19.200000pt;}
.ws54{word-spacing:19.904000pt;}
.ws56{word-spacing:19.920000pt;}
.ws55{word-spacing:20.032000pt;}
.ws5c{word-spacing:21.709824pt;}
.ws4d{word-spacing:22.432000pt;}
.ws4c{word-spacing:22.496000pt;}
.ws4e{word-spacing:22.570667pt;}
.ws4f{word-spacing:26.944000pt;}
.ws50{word-spacing:27.050667pt;}
.ws5f{word-spacing:29.440000pt;}
.ws91{word-spacing:30.224000pt;}
.ws39{word-spacing:31.392000pt;}
.ws3a{word-spacing:31.530667pt;}
.ws2d{word-spacing:33.536000pt;}
.ws3f{word-spacing:33.952000pt;}
.ws2e{word-spacing:33.962667pt;}
.ws40{word-spacing:34.096000pt;}
.ws3e{word-spacing:34.128000pt;}
.ws5e{word-spacing:35.274667pt;}
.ws41{word-spacing:35.370667pt;}
.ws79{word-spacing:37.552000pt;}
.ws58{word-spacing:40.384000pt;}
.ws57{word-spacing:40.704000pt;}
.ws64{word-spacing:41.632000pt;}
.ws63{word-spacing:41.808000pt;}
.ws65{word-spacing:41.914667pt;}
.ws82{word-spacing:44.912000pt;}
.ws81{word-spacing:44.992000pt;}
.ws80{word-spacing:45.210667pt;}
.ws38{word-spacing:48.071680pt;}
.ws85{word-spacing:48.144000pt;}
.ws84{word-spacing:48.176000pt;}
.ws7e{word-spacing:49.408000pt;}
.ws7d{word-spacing:49.472000pt;}
.ws7c{word-spacing:49.626667pt;}
.ws89{word-spacing:50.486272pt;}
.ws60{word-spacing:50.608000pt;}
.ws61{word-spacing:50.730667pt;}
.ws88{word-spacing:51.264448pt;}
.ws87{word-spacing:51.585195pt;}
.ws8b{word-spacing:51.984000pt;}
.ws8a{word-spacing:52.394667pt;}
.ws8c{word-spacing:52.448000pt;}
.ws90{word-spacing:53.952000pt;}
.ws8f{word-spacing:54.650667pt;}
.ws96{word-spacing:56.464000pt;}
.ws97{word-spacing:56.704000pt;}
.ws95{word-spacing:57.178667pt;}
.ws70{word-spacing:58.208000pt;}
.ws6f{word-spacing:58.554667pt;}
.ws2c{word-spacing:59.232000pt;}
.ws1b{word-spacing:60.768000pt;}
.ws1c{word-spacing:60.912000pt;}
.ws1d{word-spacing:61.050667pt;}
.ws6a{word-spacing:66.528000pt;}
.ws47{word-spacing:71.200000pt;}
.ws2b{word-spacing:75.024000pt;}
.ws48{word-spacing:76.240000pt;}
.ws49{word-spacing:76.992000pt;}
.ws66{word-spacing:77.488000pt;}
.ws74{word-spacing:78.458667pt;}
.ws72{word-spacing:80.288000pt;}
.ws73{word-spacing:80.704000pt;}
.ws6c{word-spacing:87.184000pt;}
.ws6d{word-spacing:87.210667pt;}
.ws83{word-spacing:135.322667pt;}
.ws6b{word-spacing:156.554667pt;}
.ws37{word-spacing:174.218667pt;}
.ws59{word-spacing:191.424000pt;}
._25{margin-left:-4.769280pt;}
._b{margin-left:-3.600000pt;}
._4{margin-left:-2.352000pt;}
._3{margin-left:-0.960000pt;}
._2{width:1.104000pt;}
._9{width:2.016000pt;}
._7{width:3.408000pt;}
._8{width:4.368000pt;}
._5{width:5.376000pt;}
._1{width:6.384000pt;}
._0{width:7.344000pt;}
._6{width:8.496000pt;}
._10{width:9.452800pt;}
._11{width:10.360320pt;}
._e{width:11.422720pt;}
._c{width:12.528000pt;}
._d{width:13.440000pt;}
._1c{width:14.914560pt;}
._14{width:15.838720pt;}
._15{width:16.816640pt;}
._12{width:19.271680pt;}
._19{width:20.530347pt;}
._18{width:21.432320pt;}
._1a{width:22.686720pt;}
._1d{width:23.610880pt;}
._1b{width:24.847360pt;}
._2b{width:25.795200pt;}
._26{width:27.496960pt;}
._16{width:28.851200pt;}
._17{width:29.752320pt;}
._2a{width:30.794240pt;}
._f{width:31.695360pt;}
._29{width:32.782507pt;}
._2e{width:33.851733pt;}
._1e{width:34.848000pt;}
._13{width:37.447680pt;}
._27{width:38.937600pt;}
._32{width:49.047040pt;}
._22{width:50.928000pt;}
._2d{width:52.890667pt;}
._33{width:58.173440pt;}
._34{width:59.534080pt;}
._21{width:68.736000pt;}
._2c{width:82.090667pt;}
._20{width:87.312000pt;}
._1f{width:98.256000pt;}
._24{width:106.512000pt;}
._23{width:123.840000pt;}
._31{width:145.844480pt;}
._30{width:147.406080pt;}
._35{width:171.239680pt;}
._2f{width:174.814720pt;}
._28{width:177.552000pt;}
._a{width:1296.661333pt;}
.fs7{font-size:32.000000pt;}
.fs8{font-size:34.560000pt;}
.fs9{font-size:37.120000pt;}
.fsb{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fsa{font-size:48.128000pt;}
.fs6{font-size:50.560000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:101.120000pt;}
.fs3{font-size:128.000000pt;}
.y34{bottom:-48.320000pt;}
.y33{bottom:-16.800000pt;}
.y0{bottom:0.000000pt;}
.y32{bottom:0.320000pt;}
.y3a{bottom:2.080000pt;}
.y275{bottom:4.960000pt;}
.y10d{bottom:7.514667pt;}
.y114{bottom:8.794667pt;}
.yfd{bottom:8.800000pt;}
.y103{bottom:8.960000pt;}
.y257{bottom:10.080000pt;}
.y108{bottom:16.160000pt;}
.y31{bottom:17.440000pt;}
.y39{bottom:17.920000pt;}
.y12b{bottom:18.080000pt;}
.y126{bottom:18.240000pt;}
.y274{bottom:20.960000pt;}
.y28{bottom:23.200000pt;}
.y10b{bottom:24.800000pt;}
.y111{bottom:24.960000pt;}
.y254{bottom:26.120000pt;}
.y12d{bottom:26.266667pt;}
.y113{bottom:28.794667pt;}
.yfc{bottom:28.800000pt;}
.y118{bottom:28.960000pt;}
.y107{bottom:32.160000pt;}
.y13e{bottom:33.120000pt;}
.y38{bottom:33.920000pt;}
.y255{bottom:34.120000pt;}
.y129{bottom:34.240000pt;}
.y12c{bottom:34.266667pt;}
.y30{bottom:34.400000pt;}
.y273{bottom:37.000000pt;}
.y134{bottom:39.520000pt;}
.y116{bottom:40.800000pt;}
.y110{bottom:40.960000pt;}
.y256{bottom:42.120000pt;}
.y112{bottom:44.794667pt;}
.y101{bottom:44.800000pt;}
.y233{bottom:48.000000pt;}
.y106{bottom:48.160000pt;}
.yfb{bottom:48.800000pt;}
.y2{bottom:49.760000pt;}
.y37{bottom:49.920000pt;}
.y128{bottom:50.240000pt;}
.y109{bottom:52.160000pt;}
.y272{bottom:53.000000pt;}
.y2f{bottom:53.920000pt;}
.y139{bottom:54.280000pt;}
.y232{bottom:60.640000pt;}
.y100{bottom:60.800000pt;}
.y1{bottom:60.960000pt;}
.y270{bottom:65.000000pt;}
.y3d{bottom:66.432000pt;}
.y36{bottom:67.360000pt;}
.y105{bottom:68.160000pt;}
.yfa{bottom:68.800000pt;}
.y133{bottom:68.960000pt;}
.y271{bottom:69.000000pt;}
.y138{bottom:70.280000pt;}
.y231{bottom:73.120000pt;}
.y2e{bottom:73.600000pt;}
.yff{bottom:76.800000pt;}
.y124{bottom:78.266667pt;}
.y104{bottom:84.160000pt;}
.y132{bottom:84.960000pt;}
.y26f{bottom:85.000000pt;}
.y230{bottom:85.600000pt;}
.yf9{bottom:88.800000pt;}
.y2d{bottom:90.560000pt;}
.yfe{bottom:92.800000pt;}
.y123{bottom:94.266667pt;}
.y22f{bottom:98.240000pt;}
.y26e{bottom:101.000000pt;}
.y2c{bottom:107.706667pt;}
.yf8{bottom:108.960000pt;}
.y22e{bottom:110.720000pt;}
.y130{bottom:113.000000pt;}
.y93{bottom:116.352000pt;}
.y26d{bottom:117.160000pt;}
.yd3{bottom:118.432000pt;}
.y1e6{bottom:119.232000pt;}
.y1aa{bottom:119.392000pt;}
.y18a{bottom:120.992000pt;}
.y22d{bottom:123.360000pt;}
.y2b{bottom:124.666667pt;}
.y157{bottom:125.632000pt;}
.y21{bottom:125.792000pt;}
.yba{bottom:126.272000pt;}
.y10c{bottom:126.432000pt;}
.y12f{bottom:129.000000pt;}
.y1cb{bottom:129.152000pt;}
.y121{bottom:129.312000pt;}
.y92{bottom:131.392000pt;}
.y189{bottom:131.712000pt;}
.y26c{bottom:133.160000pt;}
.y2a9{bottom:133.466667pt;}
.y69{bottom:133.786667pt;}
.y1fd{bottom:134.586667pt;}
.y22c{bottom:135.840000pt;}
.yd2{bottom:137.786667pt;}
.y16a{bottom:138.746667pt;}
.y1a9{bottom:138.906667pt;}
.y1e5{bottom:139.066667pt;}
.y20{bottom:141.786667pt;}
.y2ef{bottom:142.586667pt;}
.y91{bottom:145.306667pt;}
.y28b{bottom:145.466667pt;}
.yb9{bottom:146.106667pt;}
.y22b{bottom:148.320000pt;}
.y26b{bottom:149.160000pt;}
.y2c2{bottom:149.626667pt;}
.y19c{bottom:151.546667pt;}
.y68{bottom:153.306667pt;}
.y207{bottom:153.466667pt;}
.y1fc{bottom:154.106667pt;}
.y1f{bottom:157.786667pt;}
.y1a8{bottom:158.586667pt;}
.y2a{bottom:158.746667pt;}
.y90{bottom:159.546667pt;}
.y22a{bottom:160.960000pt;}
.y1ca{bottom:161.946667pt;}
.y120{bottom:162.266667pt;}
.y8f{bottom:164.186667pt;}
.y156{bottom:164.826667pt;}
.y26a{bottom:165.160000pt;}
.yb8{bottom:165.626667pt;}
.y2c1{bottom:169.466667pt;}
.yd1{bottom:170.906667pt;}
.y19b{bottom:171.066667pt;}
.y169{bottom:171.706667pt;}
.y67{bottom:172.826667pt;}
.y206{bottom:173.306667pt;}
.y229{bottom:173.440000pt;}
.y1e{bottom:173.786667pt;}
.y8e{bottom:175.066667pt;}
.y2dc{bottom:175.546667pt;}
.y1e4{bottom:178.106667pt;}
.y28a{bottom:178.426667pt;}
.y269{bottom:181.160000pt;}
.y2ee{bottom:181.946667pt;}
.y155{bottom:184.346667pt;}
.y287{bottom:185.160000pt;}
.yb7{bottom:185.306667pt;}
.y188{bottom:186.266667pt;}
.y10f{bottom:187.066667pt;}
.y2c0{bottom:188.986667pt;}
.y1d{bottom:189.786667pt;}
.yd0{bottom:190.586667pt;}
.y228{bottom:190.906667pt;}
.y1a7{bottom:191.386667pt;}
.y168{bottom:191.546667pt;}
.y66{bottom:192.506667pt;}
.y205{bottom:192.826667pt;}
.y1fb{bottom:193.306667pt;}
.y11f{bottom:194.266667pt;}
.y1c9{bottom:194.906667pt;}
.y2db{bottom:195.226667pt;}
.y268{bottom:197.160000pt;}
.y1e3{bottom:197.786667pt;}
.y286{bottom:201.160000pt;}
.y227{bottom:203.386667pt;}
.y154{bottom:204.026667pt;}
.y27{bottom:204.506667pt;}
.yb6{bottom:204.826667pt;}
.y2a8{bottom:205.626667pt;}
.y1c{bottom:205.786667pt;}
.y8d{bottom:210.266667pt;}
.y167{bottom:211.066667pt;}
.y289{bottom:211.226667pt;}
.y65{bottom:212.026667pt;}
.y204{bottom:212.346667pt;}
.y1fa{bottom:212.826667pt;}
.y267{bottom:213.320000pt;}
.y1c8{bottom:214.586667pt;}
.y226{bottom:216.026667pt;}
.y1e2{bottom:217.306667pt;}
.y285{bottom:217.320000pt;}
.y13d{bottom:219.546667pt;}
.y2bf{bottom:221.786667pt;}
.y1b{bottom:221.946667pt;}
.y153{bottom:223.546667pt;}
.yb5{bottom:224.346667pt;}
.y187{bottom:225.306667pt;}
.y24d{bottom:227.106667pt;}
.y2da{bottom:228.026667pt;}
.y225{bottom:228.506667pt;}
.y266{bottom:229.320000pt;}
.y8c{bottom:229.786667pt;}
.y166{bottom:230.586667pt;}
.y64{bottom:231.706667pt;}
.y203{bottom:232.026667pt;}
.y1f9{bottom:232.506667pt;}
.y284{bottom:233.320000pt;}
.y26{bottom:233.946667pt;}
.y1c7{bottom:234.266667pt;}
.y293{bottom:236.826667pt;}
.y1e1{bottom:236.986667pt;}
.y1a{bottom:237.946667pt;}
.y24c{bottom:239.746667pt;}
.y224{bottom:240.986667pt;}
.y288{bottom:241.320000pt;}
.y2be{bottom:241.466667pt;}
.y152{bottom:243.226667pt;}
.y10e{bottom:243.866667pt;}
.yb4{bottom:244.026667pt;}
.y186{bottom:244.986667pt;}
.y265{bottom:245.320000pt;}
.y2ed{bottom:247.546667pt;}
.y2d9{bottom:247.706667pt;}
.y283{bottom:249.320000pt;}
.y8b{bottom:249.466667pt;}
.y13f{bottom:249.626667pt;}
.y165{bottom:250.266667pt;}
.y63{bottom:251.226667pt;}
.y24b{bottom:252.226667pt;}
.y223{bottom:253.626667pt;}
.y1c6{bottom:253.786667pt;}
.y19{bottom:253.946667pt;}
.y25{bottom:255.226667pt;}
.y1e0{bottom:256.506667pt;}
.y2bd{bottom:261.146667pt;}
.y264{bottom:261.320000pt;}
.y151{bottom:262.746667pt;}
.yb3{bottom:263.546667pt;}
.y202{bottom:263.866667pt;}
.y185{bottom:264.506667pt;}
.y24a{bottom:264.866667pt;}
.y1f8{bottom:265.146667pt;}
.y282{bottom:265.320000pt;}
.y222{bottom:266.106667pt;}
.y2d8{bottom:267.386667pt;}
.y10a{bottom:268.506667pt;}
.y19a{bottom:268.986667pt;}
.y164{bottom:269.786667pt;}
.y18{bottom:269.946667pt;}
.y62{bottom:270.746667pt;}
.y1c5{bottom:273.466667pt;}
.y1df{bottom:276.026667pt;}
.y2a3{bottom:276.666667pt;}
.y263{bottom:277.346667pt;}
.y2a7{bottom:277.626667pt;}
.y221{bottom:278.746667pt;}
.y12e{bottom:279.546667pt;}
.y201{bottom:279.866667pt;}
.y2ec{bottom:280.506667pt;}
.y281{bottom:281.346667pt;}
.y8a{bottom:282.106667pt;}
.y249{bottom:282.146667pt;}
.y150{bottom:282.266667pt;}
.y24{bottom:283.066667pt;}
.yb2{bottom:283.226667pt;}
.y184{bottom:284.186667pt;}
.y1f7{bottom:284.986667pt;}
.y17{bottom:285.946667pt;}
.y2d7{bottom:286.906667pt;}
.y24e{bottom:287.653333pt;}
.y199{bottom:288.506667pt;}
.y1a6{bottom:289.466667pt;}
.y61{bottom:290.426667pt;}
.y208{bottom:291.200000pt;}
.y1c4{bottom:292.986667pt;}
.y262{bottom:293.346667pt;}
.y2bc{bottom:293.786667pt;}
.y248{bottom:294.786667pt;}
.y292{bottom:295.706667pt;}
.y220{bottom:296.026667pt;}
.y2a2{bottom:296.506667pt;}
.y280{bottom:297.346667pt;}
.y2eb{bottom:300.226667pt;}
.y16{bottom:301.986667pt;}
.y163{bottom:302.626667pt;}
.yb1{bottom:302.786667pt;}
.y200{bottom:306.946667pt;}
.y247{bottom:307.266667pt;}
.y198{bottom:308.226667pt;}
.y21f{bottom:308.666667pt;}
.y1de{bottom:308.866667pt;}
.y13c{bottom:309.026667pt;}
.yf7{bottom:309.346667pt;}
.y2a6{bottom:310.306667pt;}
.y1c3{bottom:312.546667pt;}
.y27f{bottom:313.346667pt;}
.y2bb{bottom:313.666667pt;}
.y250{bottom:314.786667pt;}
.ycf{bottom:315.106667pt;}
.y291{bottom:315.266667pt;}
.y2a1{bottom:316.066667pt;}
.y183{bottom:316.866667pt;}
.y1f6{bottom:317.826667pt;}
.y15{bottom:317.986667pt;}
.y2d6{bottom:319.746667pt;}
.y246{bottom:319.906667pt;}
.y89{bottom:321.506667pt;}
.yb0{bottom:322.306667pt;}
.y60{bottom:323.106667pt;}
.y261{bottom:325.506667pt;}
.y23{bottom:325.786667pt;}
.y21e{bottom:326.106667pt;}
.y197{bottom:327.746667pt;}
.y1a5{bottom:328.546667pt;}
.y1dd{bottom:328.706667pt;}
.y27e{bottom:329.506667pt;}
.y1c2{bottom:332.226667pt;}
.y245{bottom:332.413333pt;}
.y2ea{bottom:333.026667pt;}
.y2ba{bottom:333.186667pt;}
.y14{bottom:334.146667pt;}
.yce{bottom:334.786667pt;}
.y2a0{bottom:335.746667pt;}
.y182{bottom:336.706667pt;}
.y1f5{bottom:337.506667pt;}
.y13b{bottom:338.306667pt;}
.y21d{bottom:338.586667pt;}
.y2d5{bottom:339.426667pt;}
.y88{bottom:341.186667pt;}
.y260{bottom:341.506667pt;}
.y2a5{bottom:341.826667pt;}
.yaf{bottom:341.986667pt;}
.y5f{bottom:342.946667pt;}
.y244{bottom:344.893333pt;}
.y27d{bottom:345.506667pt;}
.y290{bottom:348.066667pt;}
.y1a4{bottom:348.226667pt;}
.y24f{bottom:348.546667pt;}
.y21c{bottom:351.066667pt;}
.y1c1{bottom:351.746667pt;}
.y2b9{bottom:352.706667pt;}
.ycd{bottom:354.466667pt;}
.y29f{bottom:355.266667pt;}
.y181{bottom:356.226667pt;}
.y1f4{bottom:357.026667pt;}
.y25f{bottom:357.506667pt;}
.y243{bottom:357.533333pt;}
.y196{bottom:360.546667pt;}
.y87{bottom:360.706667pt;}
.yae{bottom:361.506667pt;}
.y5e{bottom:362.466667pt;}
.y21b{bottom:363.706667pt;}
.y13{bottom:364.226667pt;}
.y13a{bottom:367.746667pt;}
.y242{bottom:370.013333pt;}
.y1c0{bottom:371.426667pt;}
.y2d4{bottom:372.226667pt;}
.y2e9{bottom:372.386667pt;}
.y25e{bottom:373.506667pt;}
.ycc{bottom:373.986667pt;}
.y29e{bottom:374.786667pt;}
.y180{bottom:375.906667pt;}
.y21a{bottom:376.186667pt;}
.y1f3{bottom:376.706667pt;}
.y27c{bottom:377.506667pt;}
.y86{bottom:380.226667pt;}
.yad{bottom:381.186667pt;}
.y5d{bottom:382.146667pt;}
.y2b8{bottom:385.506667pt;}
.y1a3{bottom:387.426667pt;}
.y241{bottom:387.453333pt;}
.y219{bottom:388.826667pt;}
.y25d{bottom:389.506667pt;}
.y1bf{bottom:390.946667pt;}
.y2d3{bottom:391.906667pt;}
.y27b{bottom:393.506667pt;}
.ycb{bottom:393.666667pt;}
.y29d{bottom:394.466667pt;}
.y17f{bottom:395.426667pt;}
.y1f2{bottom:396.226667pt;}
.y131{bottom:397.026667pt;}
.y12{bottom:397.186667pt;}
.y85{bottom:399.906667pt;}
.y240{bottom:399.933333pt;}
.yac{bottom:400.706667pt;}
.y5c{bottom:401.666667pt;}
.y2e8{bottom:405.186667pt;}
.y2b7{bottom:405.346667pt;}
.y25c{bottom:405.506667pt;}
.y218{bottom:406.106667pt;}
.y1a2{bottom:406.946667pt;}
.y102{bottom:409.346667pt;}
.y27a{bottom:409.506667pt;}
.y1be{bottom:410.466667pt;}
.y2d2{bottom:411.586667pt;}
.y23f{bottom:412.573333pt;}
.yca{bottom:413.186667pt;}
.y29c{bottom:413.986667pt;}
.y17e{bottom:414.946667pt;}
.y1f1{bottom:415.906667pt;}
.y217{bottom:418.746667pt;}
.y22{bottom:418.946667pt;}
.y84{bottom:419.426667pt;}
.yab{bottom:420.226667pt;}
.y5b{bottom:421.186667pt;}
.y25b{bottom:421.506667pt;}
.y2e7{bottom:424.866667pt;}
.y23e{bottom:425.053333pt;}
.y279{bottom:425.506667pt;}
.y137{bottom:426.466667pt;}
.y1dc{bottom:426.626667pt;}
.y11{bottom:429.826667pt;}
.y1bd{bottom:430.146667pt;}
.y216{bottom:431.266667pt;}
.yc9{bottom:432.706667pt;}
.y29b{bottom:433.666667pt;}
.y17d{bottom:434.626667pt;}
.y1f0{bottom:435.426667pt;}
.y29{bottom:437.186667pt;}
.y25a{bottom:437.666667pt;}
.y2b6{bottom:437.986667pt;}
.y83{bottom:439.106667pt;}
.yaa{bottom:439.906667pt;}
.y5a{bottom:440.866667pt;}
.y278{bottom:441.666667pt;}
.y23d{bottom:442.493333pt;}
.y215{bottom:443.906667pt;}
.y2d1{bottom:444.226667pt;}
.y2e6{bottom:444.386667pt;}
.y1db{bottom:446.146667pt;}
.y1bc{bottom:449.666667pt;}
.y14f{bottom:452.226667pt;}
.yc8{bottom:452.386667pt;}
.yf6{bottom:452.706667pt;}
.y29a{bottom:453.186667pt;}
.y259{bottom:453.666667pt;}
.y17c{bottom:454.146667pt;}
.y1ef{bottom:454.946667pt;}
.y23c{bottom:454.973333pt;}
.y136{bottom:455.746667pt;}
.y277{bottom:457.666667pt;}
.y195{bottom:458.626667pt;}
.y1a1{bottom:459.266667pt;}
.y162{bottom:459.426667pt;}
.y59{bottom:460.386667pt;}
.y10{bottom:461.186667pt;}
.y2d0{bottom:464.066667pt;}
.yed{bottom:464.706667pt;}
.y1da{bottom:465.666667pt;}
.y23b{bottom:467.613333pt;}
.y258{bottom:469.666667pt;}
.yf5{bottom:469.986667pt;}
.y2b5{bottom:470.946667pt;}
.y82{bottom:471.746667pt;}
.yc7{bottom:471.906667pt;}
.ya9{bottom:472.546667pt;}
.y299{bottom:472.706667pt;}
.y276{bottom:473.666667pt;}
.y17b{bottom:473.826667pt;}
.y1ee{bottom:474.626667pt;}
.y194{bottom:478.146667pt;}
.y161{bottom:479.106667pt;}
.y1bb{bottom:482.466667pt;}
.y2cf{bottom:483.586667pt;}
.y23a{bottom:485.053333pt;}
.y135{bottom:485.186667pt;}
.y1d9{bottom:485.346667pt;}
.y214{bottom:486.306667pt;}
.y2b4{bottom:490.626667pt;}
.y81{bottom:491.586667pt;}
.ya8{bottom:492.386667pt;}
.y58{bottom:493.186667pt;}
.y17a{bottom:493.346667pt;}
.yf{bottom:494.146667pt;}
.y2e5{bottom:496.866667pt;}
.y239{bottom:497.533333pt;}
.yec{bottom:497.666667pt;}
.y192{bottom:497.826667pt;}
.y160{bottom:498.626667pt;}
.y213{bottom:498.946667pt;}
.yf4{bottom:500.226667pt;}
.y1ba{bottom:502.146667pt;}
.y193{bottom:503.906667pt;}
.y1d8{bottom:504.866667pt;}
.y1ed{bottom:506.946667pt;}
.y238{bottom:510.013333pt;}
.y80{bottom:511.106667pt;}
.y212{bottom:511.426667pt;}
.ya7{bottom:511.906667pt;}
.y179{bottom:512.866667pt;}
.y122{bottom:515.106667pt;}
.y2ce{bottom:516.386667pt;}
.y2e4{bottom:516.546667pt;}
.yeb{bottom:517.506667pt;}
.y15f{bottom:518.146667pt;}
.yf3{bottom:520.066667pt;}
.y1b9{bottom:521.826667pt;}
.y2b3{bottom:523.426667pt;}
.y211{bottom:523.906667pt;}
.y28f{bottom:524.386667pt;}
.y1d7{bottom:524.546667pt;}
.y1ec{bottom:524.866667pt;}
.y57{bottom:525.186667pt;}
.ye{bottom:527.106667pt;}
.y237{bottom:527.453333pt;}
.y191{bottom:530.466667pt;}
.y7f{bottom:530.626667pt;}
.ya6{bottom:531.586667pt;}
.y178{bottom:532.546667pt;}
.y2cd{bottom:536.066667pt;}
.yea{bottom:537.053333pt;}
.y15e{bottom:537.853333pt;}
.yf2{bottom:539.613333pt;}
.y236{bottom:540.093333pt;}
.y210{bottom:541.346667pt;}
.y1b8{bottom:541.373333pt;}
.y1eb{bottom:542.653333pt;}
.y2b2{bottom:543.293333pt;}
.y1d6{bottom:544.093333pt;}
.y2e3{bottom:549.373333pt;}
.y7e{bottom:550.333333pt;}
.ya5{bottom:551.133333pt;}
.y177{bottom:552.093333pt;}
.y235{bottom:552.573333pt;}
.y20f{bottom:553.986667pt;}
.y56{bottom:555.133333pt;}
.ye9{bottom:556.573333pt;}
.y15d{bottom:557.373333pt;}
.yf1{bottom:559.133333pt;}
.yd{bottom:560.093333pt;}
.y1ea{bottom:560.413333pt;}
.y12a{bottom:560.573333pt;}
.y1b7{bottom:561.053333pt;}
.y2b1{bottom:562.813333pt;}
.y234{bottom:565.053333pt;}
.y20e{bottom:566.466667pt;}
.y2cc{bottom:568.893333pt;}
.y14e{bottom:569.853333pt;}
.ya4{bottom:570.653333pt;}
.y302{bottom:572.413333pt;}
.ye8{bottom:576.253333pt;}
.y1d5{bottom:576.893333pt;}
.y1a0{bottom:577.053333pt;}
.y1e9{bottom:578.333333pt;}
.yf0{bottom:578.813333pt;}
.y20d{bottom:578.946667pt;}
.y1b6{bottom:580.573333pt;}
.y2e2{bottom:582.173333pt;}
.y7d{bottom:583.133333pt;}
.y176{bottom:584.893333pt;}
.y55{bottom:585.853333pt;}
.y2cb{bottom:588.573333pt;}
.y14d{bottom:589.533333pt;}
.y127{bottom:589.853333pt;}
.y15c{bottom:590.173333pt;}
.ya3{bottom:590.333333pt;}
.y301{bottom:592.253333pt;}
.yc{bottom:592.893333pt;}
.y2b0{bottom:595.613333pt;}
.y20c{bottom:596.386667pt;}
.y19f{bottom:596.573333pt;}
.yef{bottom:598.333333pt;}
.y54{bottom:601.853333pt;}
.y2e1{bottom:602.013333pt;}
.y7c{bottom:602.813333pt;}
.y175{bottom:604.573333pt;}
.y2ca{bottom:608.253333pt;}
.ye7{bottom:608.893333pt;}
.y20b{bottom:609.026667pt;}
.y14c{bottom:609.053333pt;}
.y1e8{bottom:609.693333pt;}
.ya2{bottom:609.853333pt;}
.y300{bottom:611.773333pt;}
.y1b5{bottom:613.373333pt;}
.y2af{bottom:615.293333pt;}
.y28e{bottom:616.093333pt;}
.y1d4{bottom:616.253333pt;}
.y53{bottom:617.853333pt;}
.yee{bottom:618.013333pt;}
.y20a{bottom:621.506667pt;}
.y7b{bottom:622.333333pt;}
.y174{bottom:624.253333pt;}
.yb{bottom:625.853333pt;}
.y14b{bottom:628.573333pt;}
.ye6{bottom:628.733333pt;}
.y19e{bottom:629.373333pt;}
.ya1{bottom:629.533333pt;}
.y2ff{bottom:631.453333pt;}
.y1b4{bottom:633.053333pt;}
.y52{bottom:633.853333pt;}
.y209{bottom:633.986667pt;}
.y2e0{bottom:634.813333pt;}
.y2ae{bottom:634.973333pt;}
.y1d3{bottom:635.773333pt;}
.y2c9{bottom:641.053333pt;}
.y7a{bottom:642.013333pt;}
.y298{bottom:642.653333pt;}
.ye5{bottom:648.253333pt;}
.ya0{bottom:649.053333pt;}
.y51{bottom:649.853333pt;}
.y125{bottom:651.293333pt;}
.y1b3{bottom:652.733333pt;}
.y2ad{bottom:654.493333pt;}
.y1d2{bottom:655.293333pt;}
.y173{bottom:656.573333pt;}
.ya{bottom:658.813333pt;}
.y2c8{bottom:660.733333pt;}
.y79{bottom:661.533333pt;}
.y297{bottom:662.333333pt;}
.y2fe{bottom:664.093333pt;}
.y50{bottom:665.853333pt;}
.y2df{bottom:667.613333pt;}
.y14a{bottom:667.773333pt;}
.ye4{bottom:667.933333pt;}
.y9f{bottom:668.573333pt;}
.y172{bottom:674.493333pt;}
.y1d1{bottom:674.973333pt;}
.y190{bottom:681.053333pt;}
.y78{bottom:681.213333pt;}
.y4f{bottom:681.853333pt;}
.y296{bottom:682.013333pt;}
.y1b2{bottom:685.053333pt;}
.y2ac{bottom:687.293333pt;}
.ye3{bottom:687.453333pt;}
.y9e{bottom:688.253333pt;}
.y9{bottom:691.293333pt;}
.y171{bottom:692.253333pt;}
.y2c7{bottom:693.533333pt;}
.y28d{bottom:694.493333pt;}
.y2fd{bottom:697.053333pt;}
.y4e{bottom:698.013333pt;}
.y11e{bottom:700.573333pt;}
.y77{bottom:700.733333pt;}
.y295{bottom:701.533333pt;}
.y1b1{bottom:702.813333pt;}
.ye2{bottom:706.973333pt;}
.y2a4{bottom:707.613333pt;}
.y15b{bottom:707.773333pt;}
.y170{bottom:710.013333pt;}
.y18f{bottom:713.853333pt;}
.y4d{bottom:714.013333pt;}
.y11d{bottom:716.733333pt;}
.y76{bottom:720.253333pt;}
.y1b0{bottom:720.733333pt;}
.y9d{bottom:721.053333pt;}
.y294{bottom:721.213333pt;}
.y8{bottom:722.493333pt;}
.y2c6{bottom:726.333333pt;}
.y149{bottom:726.493333pt;}
.ye1{bottom:726.653333pt;}
.y15a{bottom:727.453333pt;}
.y16f{bottom:727.773333pt;}
.y2fc{bottom:729.693333pt;}
.y4c{bottom:730.013333pt;}
.y18e{bottom:733.693333pt;}
.y1af{bottom:738.493333pt;}
.y2de{bottom:739.773333pt;}
.yc6{bottom:739.933333pt;}
.y9c{bottom:740.733333pt;}
.y4b{bottom:746.013333pt;}
.ye0{bottom:746.173333pt;}
.y11c{bottom:746.813333pt;}
.y159{bottom:746.973333pt;}
.y2fb{bottom:747.453333pt;}
.y75{bottom:753.053333pt;}
.y18d{bottom:753.213333pt;}
.y7{bottom:753.693333pt;}
.y253{bottom:754.013333pt;}
.y1ae{bottom:756.253333pt;}
.y148{bottom:759.293333pt;}
.y2dd{bottom:759.453333pt;}
.y1e7{bottom:760.093333pt;}
.y9b{bottom:760.253333pt;}
.y4a{bottom:762.013333pt;}
.y16e{bottom:765.373333pt;}
.y2c5{bottom:765.693333pt;}
.ydf{bottom:765.853333pt;}
.y1ff{bottom:766.333333pt;}
.y158{bottom:766.493333pt;}
.y11b{bottom:766.653333pt;}
.yc5{bottom:772.733333pt;}
.y18c{bottom:772.893333pt;}
.y1ad{bottom:774.213333pt;}
.y49{bottom:778.053333pt;}
.y2fa{bottom:778.533333pt;}
.y2ab{bottom:779.013333pt;}
.y147{bottom:779.173333pt;}
.y9a{bottom:779.973333pt;}
.y6{bottom:784.773333pt;}
.yde{bottom:785.413333pt;}
.y74{bottom:786.053333pt;}
.y11a{bottom:786.213333pt;}
.yc4{bottom:792.453333pt;}
.y48{bottom:794.213333pt;}
.y2f9{bottom:796.453333pt;}
.y35{bottom:796.613333pt;}
.y2c4{bottom:798.533333pt;}
.y146{bottom:798.693333pt;}
.y1d0{bottom:799.013333pt;}
.y99{bottom:799.493333pt;}
.y1ac{bottom:805.573333pt;}
.y73{bottom:805.733333pt;}
.y47{bottom:810.213333pt;}
.y16d{bottom:811.813333pt;}
.yc3{bottom:811.973333pt;}
.y5{bottom:815.973333pt;}
.y1cf{bottom:816.933333pt;}
.ydd{bottom:818.213333pt;}
.y98{bottom:819.173333pt;}
.y18b{bottom:825.253333pt;}
.y72{bottom:825.413333pt;}
.y46{bottom:826.213333pt;}
.y2f8{bottom:827.493333pt;}
.y252{bottom:831.493333pt;}
.yc2{bottom:831.653333pt;}
.y1ce{bottom:834.693333pt;}
.ydc{bottom:837.733333pt;}
.y145{bottom:837.893333pt;}
.y1fe{bottom:838.533333pt;}
.y97{bottom:838.693333pt;}
.y45{bottom:842.213333pt;}
.y16c{bottom:844.773333pt;}
.y71{bottom:844.933333pt;}
.y2f7{bottom:845.413333pt;}
.y4{bottom:847.493333pt;}
.y2aa{bottom:851.013333pt;}
.yc1{bottom:851.173333pt;}
.y1cd{bottom:852.453333pt;}
.ydb{bottom:857.733333pt;}
.y44{bottom:858.213333pt;}
.y2f6{bottom:863.173333pt;}
.y70{bottom:864.613333pt;}
.y144{bottom:870.693333pt;}
.yc0{bottom:870.853333pt;}
.y43{bottom:874.213333pt;}
.yda{bottom:877.093333pt;}
.y251{bottom:877.733333pt;}
.y96{bottom:877.893333pt;}
.y3{bottom:878.373333pt;}
.y1cc{bottom:883.973333pt;}
.y6f{bottom:884.133333pt;}
.ybf{bottom:890.373333pt;}
.y2f5{bottom:894.373333pt;}
.y119{bottom:896.453333pt;}
.yd9{bottom:897.093333pt;}
.y19d{bottom:897.253333pt;}
.y95{bottom:897.413333pt;}
.y143{bottom:903.493333pt;}
.y16b{bottom:903.653333pt;}
.y42{bottom:904.133333pt;}
.y117{bottom:908.293333pt;}
.ybe{bottom:909.893333pt;}
.y2f4{bottom:912.133333pt;}
.yd8{bottom:916.613333pt;}
.y6e{bottom:916.933333pt;}
.y94{bottom:917.093333pt;}
.y2c3{bottom:923.173333pt;}
.y142{bottom:923.333333pt;}
.ybd{bottom:929.573333pt;}
.y2f3{bottom:929.893333pt;}
.y41{bottom:935.173333pt;}
.yd7{bottom:936.133333pt;}
.y1ab{bottom:936.453333pt;}
.y6d{bottom:936.613333pt;}
.y28c{bottom:942.693333pt;}
.y141{bottom:942.853333pt;}
.y115{bottom:953.093333pt;}
.yd6{bottom:955.973333pt;}
.y6c{bottom:956.133333pt;}
.y2f2{bottom:961.093333pt;}
.ybc{bottom:962.373333pt;}
.y140{bottom:962.533333pt;}
.y40{bottom:965.893333pt;}
.yd5{bottom:975.653333pt;}
.y6b{bottom:975.813333pt;}
.y2f1{bottom:978.853333pt;}
.y3f{bottom:981.893333pt;}
.yd4{bottom:995.013333pt;}
.ybb{bottom:995.173333pt;}
.y6a{bottom:995.333333pt;}
.y2f0{bottom:996.613333pt;}
.y3e{bottom:997.893333pt;}
.y3c{bottom:1048.000000pt;}
.y3b{bottom:1064.160000pt;}
.h1c{height:24.000000pt;}
.h18{height:24.160000pt;}
.h24{height:29.280000pt;}
.h22{height:29.440000pt;}
.h29{height:29.472000pt;}
.h13{height:29.968750pt;}
.h14{height:32.366250pt;}
.h2c{height:34.038750pt;}
.h2b{height:34.763750pt;}
.h2{height:39.321250pt;}
.h1a{height:40.032000pt;}
.h10{height:43.585000pt;}
.h8{height:44.015625pt;}
.h20{height:44.160000pt;}
.h3{height:44.953125pt;}
.h2e{height:45.073000pt;}
.h25{height:45.472000pt;}
.h12{height:46.265625pt;}
.h11{height:48.710625pt;}
.h31{height:49.336436pt;}
.h6{height:49.748125pt;}
.h7{height:53.992500pt;}
.h4{height:55.142500pt;}
.h1f{height:56.000000pt;}
.h1d{height:56.160000pt;}
.h5{height:56.752500pt;}
.h2f{height:58.592000pt;}
.hf{height:58.687500pt;}
.h2a{height:59.360000pt;}
.hc{height:59.937500pt;}
.h1e{height:60.000000pt;}
.h16{height:60.519362pt;}
.h15{height:61.295000pt;}
.h23{height:61.440000pt;}
.he{height:82.400000pt;}
.hb{height:97.466250pt;}
.h19{height:99.360000pt;}
.ha{height:117.375000pt;}
.h27{height:117.440000pt;}
.h28{height:117.472000pt;}
.h17{height:124.160000pt;}
.h1b{height:141.440000pt;}
.h21{height:165.626667pt;}
.hd{height:172.506667pt;}
.h26{height:234.906667pt;}
.h9{height:360.386667pt;}
.h30{height:484.866667pt;}
.h2d{height:717.920000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:44.640000pt;}
.w8{width:65.760000pt;}
.wb{width:76.800000pt;}
.w9{width:78.912000pt;}
.wd{width:86.400000pt;}
.wc{width:100.512000pt;}
.wf{width:114.112000pt;}
.w13{width:132.320000pt;}
.w15{width:141.786667pt;}
.w14{width:151.226667pt;}
.w7{width:158.746667pt;}
.w12{width:188.826667pt;}
.w10{width:188.986667pt;}
.w11{width:189.146667pt;}
.wa{width:263.706667pt;}
.w5{width:274.946667pt;}
.w4{width:366.466667pt;}
.w3{width:578.973333pt;}
.w6{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x32{left:-5.120000pt;}
.x0{left:0.000000pt;}
.xf{left:7.200000pt;}
.x4{left:9.600000pt;}
.x19{left:18.720000pt;}
.x2f{left:22.106667pt;}
.x1e{left:29.760000pt;}
.x31{left:31.680000pt;}
.x15{left:33.120000pt;}
.x1b{left:35.200000pt;}
.x1f{left:36.320000pt;}
.x16{left:38.400000pt;}
.x1d{left:40.000000pt;}
.x18{left:43.040000pt;}
.x1c{left:47.040000pt;}
.x17{left:50.240000pt;}
.x3{left:100.832000pt;}
.x20{left:108.672000pt;}
.x2{left:113.471988pt;}
.xd{left:117.951988pt;}
.xe{left:137.306655pt;}
.x23{left:144.986643pt;}
.x24{left:149.786655pt;}
.x1a{left:158.106667pt;}
.x9{left:160.666655pt;}
.x5{left:170.914667pt;}
.x25{left:184.666655pt;}
.x2a{left:200.479988pt;}
.x2d{left:246.106667pt;}
.x28{left:256.133322pt;}
.x10{left:272.226667pt;}
.x6{left:289.026667pt;}
.x21{left:297.666667pt;}
.xc{left:305.506655pt;}
.x11{left:337.986667pt;}
.x26{left:344.066655pt;}
.xa{left:360.226643pt;}
.xb{left:364.386655pt;}
.x2e{left:397.346667pt;}
.x7{left:409.506667pt;}
.x12{left:416.893333pt;}
.x29{left:450.879988pt;}
.x22{left:486.813333pt;}
.x13{left:493.693333pt;}
.x30{left:548.573333pt;}
.x14{left:594.213333pt;}
.x8{left:638.213322pt;}
.x2c{left:664.546655pt;}
.x2b{left:677.026655pt;}
.x1{left:680.613322pt;}
.x27{left:712.773322pt;}
}




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