
    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_c5bf48a63841e6b47c1c11d3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202000;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_b4c68a701e6a5069866372a9.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_967dbf96f94df24a23db5548.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.239000;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_4bd354cff46d6aaba202449a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.133000;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_3f43ec3e6b78d4dd8592322d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.223000;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_cf8432701e00c9dd9f115f01.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.113000;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_4fe2ae849e12008e15332d5d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.483000;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_7489161b08154827282645f7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.770000;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_2fef55a1f2b5a62bc767f28c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.483000;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_fba1db3a8264796bddf2fe6d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.406000;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_e26b3d3429d64fc2d5a1e6fb.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.684000;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_b50fda26655c3ba665537905.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.714000;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_c4f7f1e3bd6b5db03c8e5601.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.005000;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:ffe;src:url('chunks/assets/font_42625ff932158d524084f834.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.023000;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);}
.v3{vertical-align:-18.000000px;}
.v5{vertical-align:-16.800021px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.487915px;}
.v7{vertical-align:18.000000px;}
.v6{vertical-align:19.199890px;}
.v4{vertical-align:23.490365px;}
.v2{vertical-align:26.399780px;}
.ls5{letter-spacing:-4.667933px;}
.ls8{letter-spacing:-0.882000px;}
.lsa{letter-spacing:-0.864000px;}
.ls17{letter-spacing:-0.768000px;}
.ls1b{letter-spacing:-0.675000px;}
.ls7{letter-spacing:-0.588000px;}
.ls18{letter-spacing:-0.470400px;}
.ls9{letter-spacing:-0.411600px;}
.ls6{letter-spacing:-0.294000px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000002px;}
.ls19{letter-spacing:0.000070px;}
.ls1{letter-spacing:0.000097px;}
.ls2{letter-spacing:0.000100px;}
.ls1a{letter-spacing:0.450000px;}
.ls0{letter-spacing:5.460000px;}
.ls15{letter-spacing:103.671489px;}
.ls16{letter-spacing:103.671672px;}
.ls11{letter-spacing:106.964289px;}
.ls12{letter-spacing:106.964472px;}
.ls14{letter-spacing:127.095073px;}
.ls13{letter-spacing:127.095439px;}
.lsb{letter-spacing:205.130427px;}
.lsd{letter-spacing:217.577472px;}
.ls10{letter-spacing:225.070272px;}
.lse{letter-spacing:225.261577px;}
.lsf{letter-spacing:586.916851px;}
.lsc{letter-spacing:590.209651px;}
.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:-21.216000px;}
.ws5{word-spacing:-13.818000px;}
.ws8e{word-spacing:-13.406400px;}
.ws2{word-spacing:-12.483600px;}
.ws3{word-spacing:-12.420000px;}
.wsc1{word-spacing:-10.512000px;}
.ws10d{word-spacing:-10.305000px;}
.ws1{word-spacing:-10.117800px;}
.wsbf{word-spacing:-9.936000px;}
.ws10c{word-spacing:-9.855000px;}
.ws10b{word-spacing:-9.315000px;}
.ws4{word-spacing:-9.198000px;}
.ws92{word-spacing:-8.640000px;}
.ws10e{word-spacing:-8.100000px;}
.ws8f{word-spacing:-6.232800px;}
.ws8{word-spacing:-2.772000px;}
.ws7{word-spacing:-2.310000px;}
.ws4d{word-spacing:-1.176000px;}
.wsf5{word-spacing:-0.764400px;}
.ws40{word-spacing:-0.646800px;}
.wsef{word-spacing:-0.588000px;}
.wsb5{word-spacing:-0.529200px;}
.ws10f{word-spacing:-0.450000px;}
.wse9{word-spacing:-0.352800px;}
.wscd{word-spacing:-0.294000px;}
.ws47{word-spacing:-0.235200px;}
.ws86{word-spacing:-0.176400px;}
.wsd7{word-spacing:-0.117600px;}
.ws111{word-spacing:-0.090000px;}
.ws110{word-spacing:-0.045000px;}
.ws17{word-spacing:-0.041160px;}
.ws6{word-spacing:0.000000px;}
.ws20{word-spacing:0.058800px;}
.wsb{word-spacing:0.117600px;}
.ws5f{word-spacing:0.235200px;}
.ws1c{word-spacing:0.294000px;}
.ws3e{word-spacing:0.411600px;}
.wsd5{word-spacing:0.470400px;}
.wsa4{word-spacing:0.529200px;}
.ws30{word-spacing:0.588000px;}
.wsad{word-spacing:0.646800px;}
.ws41{word-spacing:0.705600px;}
.wsd3{word-spacing:0.768000px;}
.wsda{word-spacing:0.823200px;}
.wsbb{word-spacing:0.864000px;}
.ws79{word-spacing:0.882000px;}
.ws10a{word-spacing:0.940800px;}
.ws87{word-spacing:0.999600px;}
.ws4e{word-spacing:1.058400px;}
.ws61{word-spacing:1.117200px;}
.ws82{word-spacing:1.176000px;}
.ws83{word-spacing:1.293600px;}
.wsde{word-spacing:1.352400px;}
.ws48{word-spacing:1.411200px;}
.ws62{word-spacing:1.470000px;}
.wsd6{word-spacing:1.528800px;}
.ws94{word-spacing:1.587600px;}
.wsb2{word-spacing:1.646400px;}
.ws67{word-spacing:1.705200px;}
.ws3f{word-spacing:1.764000px;}
.ws9b{word-spacing:1.822800px;}
.wsa5{word-spacing:1.940400px;}
.wsd2{word-spacing:1.998000px;}
.ws74{word-spacing:1.999200px;}
.wsc{word-spacing:2.058000px;}
.ws84{word-spacing:2.116800px;}
.ws7e{word-spacing:2.234400px;}
.wsf{word-spacing:2.293200px;}
.ws63{word-spacing:2.352000px;}
.wsfe{word-spacing:2.410800px;}
.wsb4{word-spacing:2.469600px;}
.wsba{word-spacing:2.484000px;}
.wse1{word-spacing:2.528400px;}
.ws106{word-spacing:2.646000px;}
.wscf{word-spacing:2.704800px;}
.ws6e{word-spacing:2.763600px;}
.ws5d{word-spacing:2.881200px;}
.wsbd{word-spacing:2.916000px;}
.ws3a{word-spacing:2.998800px;}
.wsb0{word-spacing:3.057600px;}
.ws88{word-spacing:3.116400px;}
.wsdd{word-spacing:3.175200px;}
.ws2c{word-spacing:3.234000px;}
.ws65{word-spacing:3.351600px;}
.wsa2{word-spacing:3.410400px;}
.ws2f{word-spacing:3.528000px;}
.ws2e{word-spacing:3.586800px;}
.ws7a{word-spacing:3.645600px;}
.wse5{word-spacing:3.704400px;}
.wsd8{word-spacing:3.763200px;}
.ws5a{word-spacing:3.822000px;}
.ws49{word-spacing:3.880800px;}
.ws1e{word-spacing:3.998400px;}
.ws7c{word-spacing:4.057200px;}
.ws4a{word-spacing:4.116000px;}
.ws35{word-spacing:4.174800px;}
.ws10{word-spacing:4.233600px;}
.ws1d{word-spacing:4.292400px;}
.ws57{word-spacing:4.351200px;}
.ws3d{word-spacing:4.410000px;}
.ws60{word-spacing:4.468800px;}
.ws16{word-spacing:4.527600px;}
.wsa0{word-spacing:4.586400px;}
.wsb6{word-spacing:4.704000px;}
.ws8a{word-spacing:4.762800px;}
.ws99{word-spacing:4.821600px;}
.wsdc{word-spacing:4.939200px;}
.ws95{word-spacing:5.056800px;}
.wse0{word-spacing:5.115600px;}
.ws6c{word-spacing:5.174400px;}
.wsbe{word-spacing:5.238000px;}
.ws73{word-spacing:5.292000px;}
.ws66{word-spacing:5.350800px;}
.ws29{word-spacing:5.409600px;}
.wsaa{word-spacing:5.468400px;}
.wsa9{word-spacing:5.586000px;}
.wsed{word-spacing:5.762400px;}
.ws4c{word-spacing:5.821200px;}
.ws77{word-spacing:5.880000px;}
.ws23{word-spacing:5.938800px;}
.wsa8{word-spacing:5.997600px;}
.wsd4{word-spacing:6.048000px;}
.ws9f{word-spacing:6.056400px;}
.ws1f{word-spacing:6.115200px;}
.ws8c{word-spacing:6.174000px;}
.wse2{word-spacing:6.291600px;}
.ws100{word-spacing:6.409200px;}
.ws85{word-spacing:6.468000px;}
.wsab{word-spacing:6.526800px;}
.wsff{word-spacing:6.585600px;}
.wsb7{word-spacing:6.644400px;}
.ws2b{word-spacing:6.703200px;}
.ws5c{word-spacing:6.762000px;}
.wsa7{word-spacing:6.820800px;}
.ws7b{word-spacing:6.879600px;}
.wsf4{word-spacing:6.938400px;}
.ws4f{word-spacing:6.997200px;}
.ws36{word-spacing:7.056000px;}
.ws6d{word-spacing:7.173600px;}
.ws5e{word-spacing:7.232400px;}
.ws7f{word-spacing:7.291200px;}
.ws34{word-spacing:7.350000px;}
.wsb3{word-spacing:7.408800px;}
.wsc8{word-spacing:7.467600px;}
.ws108{word-spacing:7.526400px;}
.wse4{word-spacing:7.644000px;}
.ws8d{word-spacing:7.668000px;}
.wsac{word-spacing:7.702800px;}
.wse6{word-spacing:7.761600px;}
.ws97{word-spacing:7.820400px;}
.ws37{word-spacing:7.879200px;}
.ws80{word-spacing:7.938000px;}
.ws89{word-spacing:7.996800px;}
.ws26{word-spacing:8.055600px;}
.wscc{word-spacing:8.114400px;}
.ws46{word-spacing:8.173200px;}
.ws42{word-spacing:8.232000px;}
.ws3b{word-spacing:8.290800px;}
.ws58{word-spacing:8.467200px;}
.wsd1{word-spacing:8.526000px;}
.wsc9{word-spacing:8.584800px;}
.ws4b{word-spacing:8.643600px;}
.ws14{word-spacing:8.702400px;}
.wsb1{word-spacing:8.761200px;}
.ws54{word-spacing:8.820000px;}
.ws75{word-spacing:8.878800px;}
.ws96{word-spacing:8.937600px;}
.ws98{word-spacing:8.996400px;}
.ws68{word-spacing:9.055200px;}
.wsa{word-spacing:9.114000px;}
.ws7d{word-spacing:9.231600px;}
.wsbc{word-spacing:9.234000px;}
.wsb8{word-spacing:9.290400px;}
.ws13{word-spacing:9.349200px;}
.wsdb{word-spacing:9.408000px;}
.ws9a{word-spacing:9.466800px;}
.ws31{word-spacing:9.525600px;}
.wsae{word-spacing:9.643200px;}
.ws107{word-spacing:9.702000px;}
.wse7{word-spacing:9.760800px;}
.ws3c{word-spacing:9.819600px;}
.wsaf{word-spacing:9.878400px;}
.ws33{word-spacing:9.937200px;}
.ws9{word-spacing:9.996000px;}
.ws2a{word-spacing:10.054800px;}
.ws76{word-spacing:10.172400px;}
.wsa1{word-spacing:10.231200px;}
.wsce{word-spacing:10.290000px;}
.wsfc{word-spacing:10.348800px;}
.ws44{word-spacing:10.407600px;}
.ws103{word-spacing:10.466400px;}
.ws45{word-spacing:10.584000px;}
.wsd0{word-spacing:10.642800px;}
.ws25{word-spacing:10.760400px;}
.ws1b{word-spacing:10.936800px;}
.ws43{word-spacing:10.995600px;}
.wsd9{word-spacing:11.054400px;}
.wsdf{word-spacing:11.172000px;}
.wscb{word-spacing:11.230800px;}
.wsfd{word-spacing:11.289600px;}
.wsb9{word-spacing:11.407200px;}
.wsf2{word-spacing:11.466000px;}
.ws52{word-spacing:11.524800px;}
.ws6f{word-spacing:11.642400px;}
.ws38{word-spacing:11.818800px;}
.wsfb{word-spacing:11.877600px;}
.wsf1{word-spacing:11.995200px;}
.wseb{word-spacing:12.054000px;}
.ws6a{word-spacing:12.112800px;}
.wsd{word-spacing:12.171600px;}
.ws72{word-spacing:12.348000px;}
.ws27{word-spacing:12.406800px;}
.ws8b{word-spacing:12.465600px;}
.ws71{word-spacing:12.759600px;}
.ws81{word-spacing:12.936000px;}
.wsec{word-spacing:13.053600px;}
.wsa3{word-spacing:13.112400px;}
.wsf3{word-spacing:13.171200px;}
.ws101{word-spacing:13.347600px;}
.wsf7{word-spacing:13.406400px;}
.ws1a{word-spacing:13.465200px;}
.wsf8{word-spacing:13.641600px;}
.ws78{word-spacing:13.876800px;}
.ws24{word-spacing:13.935600px;}
.ws50{word-spacing:13.994400px;}
.ws21{word-spacing:14.347200px;}
.wse8{word-spacing:14.523600px;}
.ws22{word-spacing:14.641200px;}
.ws15{word-spacing:14.700000px;}
.ws39{word-spacing:14.758800px;}
.ws19{word-spacing:14.817600px;}
.ws11{word-spacing:14.935200px;}
.ws28{word-spacing:15.405600px;}
.wsf0{word-spacing:15.582000px;}
.ws32{word-spacing:15.817200px;}
.ws9c{word-spacing:15.876000px;}
.ws56{word-spacing:16.228800px;}
.wsca{word-spacing:16.405200px;}
.ws2d{word-spacing:16.699200px;}
.ws18{word-spacing:16.758000px;}
.ws6b{word-spacing:16.816800px;}
.ws102{word-spacing:17.110800px;}
.ws5b{word-spacing:17.228400px;}
.ws59{word-spacing:17.346000px;}
.ws55{word-spacing:17.463600px;}
.ws12{word-spacing:17.522400px;}
.ws9e{word-spacing:17.934000px;}
.wsa6{word-spacing:17.992800px;}
.wse3{word-spacing:18.110400px;}
.wsf6{word-spacing:19.345200px;}
.ws109{word-spacing:19.404000px;}
.ws105{word-spacing:19.462800px;}
.ws104{word-spacing:19.698000px;}
.ws64{word-spacing:20.286000px;}
.ws9d{word-spacing:20.638800px;}
.wsc7{word-spacing:20.697600px;}
.ws53{word-spacing:21.168000px;}
.ws70{word-spacing:21.403200px;}
.wsfa{word-spacing:22.226400px;}
.wse{word-spacing:22.932000px;}
.wsf9{word-spacing:23.049600px;}
.wsea{word-spacing:28.518000px;}
.ws51{word-spacing:35.515200px;}
.wsee{word-spacing:37.984800px;}
.ws90{word-spacing:80.447992px;}
.ws91{word-spacing:80.447994px;}
.ws93{word-spacing:80.448000px;}
.ws69{word-spacing:375.600000px;}
.wsc0{word-spacing:437.616000px;}
.wsc4{word-spacing:479.184000px;}
.wsc3{word-spacing:480.960000px;}
.wsc6{word-spacing:502.608000px;}
.wsc5{word-spacing:504.384000px;}
.wsc2{word-spacing:673.142845px;}
._4a{margin-left:-11.544960px;}
._3e{margin-left:-10.389600px;}
._e{margin-left:-7.473600px;}
._7{margin-left:-6.056400px;}
._1a{margin-left:-4.987080px;}
._2{margin-left:-3.758400px;}
._5{margin-left:-2.718000px;}
._0{margin-left:-1.584000px;}
._1{width:1.680000px;}
._3{width:3.585600px;}
._9{width:5.938778px;}
._48{width:7.136400px;}
._d{width:8.198400px;}
._a{width:9.602040px;}
._8{width:10.756769px;}
._1b{width:12.095984px;}
._4{width:14.903983px;}
._c{width:15.993600px;}
._6{width:17.363988px;}
._b{width:20.672400px;}
._4c{width:22.298400px;}
._4d{width:25.673400px;}
._49{width:29.387967px;}
._4b{width:44.258400px;}
._28{width:90.959994px;}
._44{width:105.167977px;}
._3f{width:108.624000px;}
._3b{width:114.684000px;}
._33{width:117.792000px;}
._20{width:119.135994px;}
._14{width:128.414389px;}
._23{width:142.559994px;}
._1e{width:152.688000px;}
._40{width:165.264000px;}
._2d{width:174.335994px;}
._45{width:178.943977px;}
._42{width:182.447977px;}
._1d{width:207.408000px;}
._32{width:210.912000px;}
._37{width:220.368000px;}
._43{width:227.039977px;}
._3a{width:233.855992px;}
._17{width:241.968000px;}
._3d{width:243.792000px;}
._18{width:250.320000px;}
._15{width:273.888000px;}
._24{width:311.280000px;}
._12{width:319.967987px;}
._46{width:321.551977px;}
._19{width:328.142400px;}
._10{width:342.527987px;}
._21{width:356.783982px;}
._47{width:368.735981px;}
._2a{width:370.799964px;}
._13{width:385.680000px;}
._22{width:401.375982px;}
._f{width:408.672000px;}
._16{width:421.775989px;}
._38{width:448.128000px;}
._2b{width:466.031964px;}
._27{width:474.288000px;}
._34{width:491.262000px;}
._36{width:519.504000px;}
._25{width:527.664000px;}
._2f{width:535.439956px;}
._2e{width:550.703956px;}
._41{width:553.439977px;}
._29{width:571.391964px;}
._1c{width:577.872000px;}
._35{width:582.624000px;}
._2c{width:591.216000px;}
._39{width:605.184000px;}
._31{width:615.963425px;}
._30{width:687.710400px;}
._3c{width:700.320000px;}
._26{width:716.670000px;}
._1f{width:721.775982px;}
._11{width:892.032000px;}
.fc3{color:rgb(85,85,84);}
.fc2{color:rgb(0,0,255);}
.fc4{color:rgb(62,62,62);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:29.400000px;}
.fsb{font-size:31.500000px;}
.fs10{font-size:33.600000px;}
.fsd{font-size:41.160000px;}
.fs7{font-size:42.000000px;}
.fsa{font-size:45.000000px;}
.fs4{font-size:46.199999px;}
.fs0{font-size:48.000000px;}
.fse{font-size:54.000000px;}
.fsc{font-size:55.199999px;}
.fs8{font-size:58.800000px;}
.fs6{font-size:60.000000px;}
.fs5{font-size:61.800000px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:78.000000px;}
.fs9{font-size:97.248596px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y38{bottom:6.589233px;}
.y24{bottom:75.191248px;}
.y23{bottom:87.192753px;}
.y136{bottom:97.795350px;}
.y22{bottom:99.194252px;}
.y286{bottom:99.990895px;}
.y23f{bottom:100.620895px;}
.y165{bottom:102.797997px;}
.y157{bottom:102.833997px;}
.y73{bottom:106.620895px;}
.y9a{bottom:106.635295px;}
.y1b0{bottom:106.671295px;}
.y1d5{bottom:106.678495px;}
.y12e{bottom:107.096700px;}
.ye2{bottom:109.536595px;}
.yc1{bottom:109.543795px;}
.y21{bottom:111.195750px;}
.y28f{bottom:112.796261px;}
.y285{bottom:113.490895px;}
.y23e{bottom:114.120895px;}
.y135{bottom:114.742355px;}
.y156{bottom:120.826797px;}
.y164{bottom:120.914997px;}
.y20{bottom:123.197250px;}
.y72{bottom:124.620895px;}
.y99{bottom:124.628095px;}
.y1fb{bottom:124.649695px;}
.y1af{bottom:124.664095px;}
.y1d4{bottom:124.671295px;}
.y28e{bottom:124.797761px;}
.y12d{bottom:125.089500px;}
.y284{bottom:126.990895px;}
.ye1{bottom:127.529395px;}
.yc0{bottom:127.536595px;}
.y23d{bottom:127.620895px;}
.y149{bottom:132.799206px;}
.y155{bottom:138.819597px;}
.y163{bottom:138.907797px;}
.y283{bottom:140.490895px;}
.y23c{bottom:141.120895px;}
.y98{bottom:142.620895px;}
.y71{bottom:142.628095px;}
.y1fa{bottom:142.642495px;}
.y1ae{bottom:142.656895px;}
.y1d3{bottom:142.664095px;}
.y12c{bottom:143.082300px;}
.ye0{bottom:145.522195px;}
.ybf{bottom:145.529395px;}
.y28d{bottom:150.113261px;}
.y148{bottom:151.027206px;}
.y282{bottom:153.990895px;}
.y23b{bottom:154.620895px;}
.y3c{bottom:156.461998px;}
.y154{bottom:156.812397px;}
.y162{bottom:156.900597px;}
.y35{bottom:157.462646px;}
.y70{bottom:160.620895px;}
.y1f9{bottom:160.635295px;}
.y215{bottom:160.642495px;}
.y1ad{bottom:160.649695px;}
.y1d2{bottom:160.656895px;}
.y12b{bottom:161.075100px;}
.ydf{bottom:163.514995px;}
.ybe{bottom:163.522195px;}
.y281{bottom:167.490895px;}
.y28c{bottom:168.110261px;}
.y23a{bottom:168.120895px;}
.y147{bottom:169.171206px;}
.y3b{bottom:169.961998px;}
.y153{bottom:174.805197px;}
.y161{bottom:174.893397px;}
.y34{bottom:175.455448px;}
.y1f8{bottom:178.628095px;}
.y214{bottom:178.635295px;}
.y6f{bottom:178.642495px;}
.y1d1{bottom:178.649695px;}
.y12a{bottom:179.075100px;}
.y280{bottom:180.990895px;}
.yde{bottom:181.507795px;}
.ybd{bottom:181.514995px;}
.y239{bottom:181.620895px;}
.y28b{bottom:186.107261px;}
.y146{bottom:187.315206px;}
.y3a{bottom:187.961998px;}
.y152{bottom:192.797997px;}
.y160{bottom:192.886197px;}
.y33{bottom:193.448250px;}
.y27f{bottom:194.490895px;}
.y238{bottom:195.120895px;}
.y1f7{bottom:196.620895px;}
.y213{bottom:196.628095px;}
.y6e{bottom:196.635295px;}
.y1d0{bottom:196.642495px;}
.y97{bottom:196.656895px;}
.y39{bottom:196.961998px;}
.ydd{bottom:199.500595px;}
.ybc{bottom:199.507795px;}
.y28a{bottom:204.104261px;}
.y145{bottom:205.459206px;}
.y27e{bottom:207.990895px;}
.y237{bottom:208.620895px;}
.y151{bottom:210.797997px;}
.y15f{bottom:210.878997px;}
.y32{bottom:211.484253px;}
.y212{bottom:214.620895px;}
.y6d{bottom:214.628095px;}
.y1cf{bottom:214.635295px;}
.y1f6{bottom:214.642495px;}
.y96{bottom:214.649695px;}
.y129{bottom:215.104049px;}
.ybb{bottom:217.500595px;}
.y27d{bottom:221.490895px;}
.y289{bottom:222.101261px;}
.y236{bottom:222.120895px;}
.y144{bottom:223.603206px;}
.y150{bottom:228.812397px;}
.y15e{bottom:228.871797px;}
.y31{bottom:229.477043px;}
.y6c{bottom:232.620895px;}
.y1ce{bottom:232.628095px;}
.y1f5{bottom:232.635295px;}
.y95{bottom:232.642495px;}
.y128{bottom:233.096849px;}
.y27c{bottom:234.990895px;}
.ydc{bottom:235.500595px;}
.yba{bottom:235.514995px;}
.y235{bottom:235.620895px;}
.y288{bottom:240.098261px;}
.y143{bottom:241.747206px;}
.y2a{bottom:246.693924px;}
.y14f{bottom:246.805197px;}
.y15d{bottom:246.864597px;}
.y30{bottom:247.469856px;}
.y27b{bottom:248.490895px;}
.y234{bottom:249.120895px;}
.y1cd{bottom:250.620895px;}
.y1f4{bottom:250.628095px;}
.y94{bottom:250.635295px;}
.y1ac{bottom:250.642495px;}
.y6b{bottom:250.678495px;}
.y127{bottom:251.089649px;}
.yb9{bottom:253.507795px;}
.y287{bottom:258.095261px;}
.y142{bottom:259.891206px;}
.y27a{bottom:261.990895px;}
.y233{bottom:262.620895px;}
.y29{bottom:264.686714px;}
.y14e{bottom:264.797997px;}
.y15c{bottom:264.857397px;}
.y2f{bottom:265.462646px;}
.y1f3{bottom:268.620895px;}
.y93{bottom:268.628095px;}
.y1ab{bottom:268.635295px;}
.y211{bottom:268.664095px;}
.y6a{bottom:268.671295px;}
.y126{bottom:269.082449px;}
.yb8{bottom:271.500595px;}
.ydb{bottom:271.658995px;}
.y279{bottom:275.490895px;}
.y232{bottom:276.120895px;}
.y141{bottom:278.035206px;}
.y291{bottom:280.194141px;}
.y28{bottom:282.679504px;}
.y14d{bottom:282.805197px;}
.y15b{bottom:282.850197px;}
.y2e{bottom:283.455460px;}
.y92{bottom:286.620895px;}
.y1aa{bottom:286.628095px;}
.y1f2{bottom:286.656895px;}
.y69{bottom:286.664095px;}
.y125{bottom:287.075249px;}
.y278{bottom:288.990895px;}
.yb7{bottom:289.507795px;}
.y231{bottom:289.620895px;}
.yda{bottom:289.651795px;}
.y140{bottom:296.191206px;}
.y290{bottom:299.994141px;}
.y27{bottom:300.672318px;}
.y14c{bottom:300.797997px;}
.y15a{bottom:300.842997px;}
.y2d{bottom:301.448250px;}
.y277{bottom:302.490895px;}
.y230{bottom:303.120895px;}
.y1a9{bottom:304.620895px;}
.y91{bottom:304.628095px;}
.y1f1{bottom:304.649695px;}
.y68{bottom:304.656895px;}
.y124{bottom:305.111272px;}
.yb6{bottom:307.500595px;}
.yd9{bottom:307.644595px;}
.y13f{bottom:309.691206px;}
.y276{bottom:315.990895px;}
.y22f{bottom:316.620895px;}
.y26{bottom:318.665108px;}
.y14b{bottom:318.805197px;}
.y159{bottom:318.835797px;}
.y2c{bottom:319.488304px;}
.y90{bottom:322.620895px;}
.y1a8{bottom:322.635295px;}
.y1f0{bottom:322.642495px;}
.y67{bottom:322.649695px;}
.y1cc{bottom:322.692895px;}
.y123{bottom:323.104072px;}
.yb5{bottom:325.550995px;}
.yd8{bottom:325.637395px;}
.y13e{bottom:327.835206px;}
.y275{bottom:329.490895px;}
.y22e{bottom:330.120895px;}
.y25{bottom:336.665108px;}
.y14a{bottom:336.797997px;}
.y158{bottom:336.828597px;}
.y2b{bottom:337.481117px;}
.y1a7{bottom:340.628095px;}
.y1ef{bottom:340.635295px;}
.y66{bottom:340.642495px;}
.y1cb{bottom:340.685695px;}
.y122{bottom:341.096872px;}
.y274{bottom:342.990895px;}
.yb4{bottom:343.543795px;}
.y22d{bottom:343.620895px;}
.yd7{bottom:343.630195px;}
.y13d{bottom:345.979206px;}
.y273{bottom:356.490895px;}
.y22c{bottom:357.120895px;}
.y1a6{bottom:358.620895px;}
.y1ee{bottom:358.628095px;}
.y65{bottom:358.635295px;}
.y1ca{bottom:358.678495px;}
.y121{bottom:359.089672px;}
.yb3{bottom:361.536595px;}
.yd6{bottom:361.622995px;}
.y13c{bottom:364.123206px;}
.y272{bottom:369.990895px;}
.y22b{bottom:370.620895px;}
.y1ed{bottom:376.620895px;}
.y64{bottom:376.628095px;}
.y1a5{bottom:376.649695px;}
.y1c9{bottom:376.671295px;}
.y120{bottom:377.082472px;}
.y17a{bottom:379.224609px;}
.yb2{bottom:379.529395px;}
.yd5{bottom:379.615795px;}
.y13b{bottom:382.267206px;}
.y271{bottom:383.490895px;}
.y1f{bottom:389.315094px;}
.y63{bottom:394.620895px;}
.y1a4{bottom:394.642495px;}
.y1c8{bottom:394.664095px;}
.y1ec{bottom:394.714495px;}
.y11f{bottom:395.075272px;}
.y179{bottom:396.226639px;}
.y270{bottom:396.990895px;}
.yb1{bottom:397.522195px;}
.yd4{bottom:397.608595px;}
.y13a{bottom:400.411206px;}
.y26f{bottom:410.490895px;}
.y1e{bottom:411.815094px;}
.y62{bottom:412.628095px;}
.y1a3{bottom:412.635295px;}
.y1c7{bottom:412.656895px;}
.y1eb{bottom:412.707295px;}
.y11e{bottom:413.075272px;}
.y184{bottom:414.064499px;}
.yb0{bottom:415.514995px;}
.yd3{bottom:415.601395px;}
.y139{bottom:418.555206px;}
.y26e{bottom:423.990895px;}
.y1d{bottom:429.815094px;}
.y61{bottom:430.620895px;}
.y1a2{bottom:430.628095px;}
.y1c6{bottom:430.649695px;}
.y1ea{bottom:430.700095px;}
.y11d{bottom:431.075272px;}
.y183{bottom:432.289490px;}
.yaf{bottom:433.507795px;}
.yd2{bottom:433.594195px;}
.y26d{bottom:437.490895px;}
.y138{bottom:445.442871px;}
.y1c{bottom:447.815094px;}
.y1a1{bottom:448.620895px;}
.y8f{bottom:448.635295px;}
.y1c5{bottom:448.642495px;}
.y60{bottom:448.656895px;}
.y1e9{bottom:448.692895px;}
.y182{bottom:450.439499px;}
.y26c{bottom:450.990895px;}
.yae{bottom:451.500595px;}
.yd1{bottom:451.586995px;}
.y137{bottom:458.942871px;}
.y26b{bottom:464.490895px;}
.y1b{bottom:465.815094px;}
.y1a0{bottom:466.620895px;}
.y8e{bottom:466.628095px;}
.y1c4{bottom:466.635295px;}
.y210{bottom:466.642495px;}
.y5f{bottom:466.649695px;}
.y1e8{bottom:466.685695px;}
.y11c{bottom:467.096872px;}
.y181{bottom:468.589508px;}
.yad{bottom:469.500595px;}
.yd0{bottom:469.579795px;}
.y22a{bottom:475.620895px;}
.y26a{bottom:477.990895px;}
.y134{bottom:483.270432px;}
.y1a{bottom:483.815094px;}
.y8d{bottom:484.620895px;}
.y1c3{bottom:484.628095px;}
.y20f{bottom:484.635295px;}
.y5e{bottom:484.642495px;}
.y19f{bottom:484.656895px;}
.y1e7{bottom:484.678495px;}
.y11b{bottom:485.089672px;}
.y180{bottom:486.739517px;}
.yac{bottom:487.507795px;}
.ycf{bottom:487.572595px;}
.y229{bottom:489.120895px;}
.y269{bottom:491.490895px;}
.y133{bottom:499.767432px;}
.y8c{bottom:502.620895px;}
.y20e{bottom:502.628095px;}
.y5d{bottom:502.635295px;}
.y19e{bottom:502.649695px;}
.y1e6{bottom:502.671295px;}
.y11a{bottom:503.082472px;}
.y17f{bottom:504.889481px;}
.y268{bottom:504.990895px;}
.yab{bottom:505.500595px;}
.yce{bottom:505.565395px;}
.y19{bottom:506.315094px;}
.y132{bottom:516.264432px;}
.y267{bottom:518.490895px;}
.y20d{bottom:520.620895px;}
.y5c{bottom:520.628095px;}
.y19d{bottom:520.642495px;}
.y1c2{bottom:520.649695px;}
.y8b{bottom:520.656895px;}
.y1e5{bottom:520.664095px;}
.y119{bottom:521.075272px;}
.y17e{bottom:523.039490px;}
.yaa{bottom:523.500595px;}
.ycd{bottom:523.558195px;}
.y18{bottom:524.315094px;}
.y266{bottom:531.990895px;}
.y131{bottom:532.761432px;}
.y5b{bottom:538.620895px;}
.y19c{bottom:538.635295px;}
.y1c1{bottom:538.642495px;}
.y8a{bottom:538.649695px;}
.y1e4{bottom:538.656895px;}
.y118{bottom:539.125672px;}
.y17d{bottom:541.191017px;}
.ya9{bottom:541.522195px;}
.ycc{bottom:541.550995px;}
.y17{bottom:542.315094px;}
.y265{bottom:545.490895px;}
.y130{bottom:549.258432px;}
.y228{bottom:552.120895px;}
.y19b{bottom:556.628095px;}
.y1c0{bottom:556.635295px;}
.y5a{bottom:556.642495px;}
.y1e3{bottom:556.649695px;}
.y117{bottom:557.118472px;}
.y264{bottom:558.990895px;}
.ya8{bottom:559.514995px;}
.ycb{bottom:559.543795px;}
.y16{bottom:560.315094px;}
.y12f{bottom:565.755432px;}
.y17c{bottom:568.083017px;}
.y263{bottom:572.490895px;}
.y19a{bottom:574.620895px;}
.y1bf{bottom:574.628095px;}
.y59{bottom:574.635295px;}
.y1e2{bottom:574.642495px;}
.y116{bottom:575.111272px;}
.ya7{bottom:577.507795px;}
.yca{bottom:577.536595px;}
.y15{bottom:578.315094px;}
.y227{bottom:579.120895px;}
.y262{bottom:585.990895px;}
.y17b{bottom:591.927017px;}
.y1be{bottom:592.620895px;}
.y58{bottom:592.628095px;}
.y1e1{bottom:592.635295px;}
.y199{bottom:592.685695px;}
.y115{bottom:593.104072px;}
.ya6{bottom:595.500595px;}
.yc9{bottom:595.529395px;}
.y14{bottom:596.315094px;}
.y261{bottom:599.490895px;}
.y226{bottom:606.120895px;}
.y57{bottom:610.620895px;}
.y1e0{bottom:610.628095px;}
.y89{bottom:610.635295px;}
.yfb{bottom:610.656895px;}
.y1bd{bottom:610.664095px;}
.y198{bottom:610.678495px;}
.y114{bottom:611.096872px;}
.y260{bottom:612.990895px;}
.ya5{bottom:613.514995px;}
.yc8{bottom:613.522195px;}
.y13{bottom:614.315094px;}
.y178{bottom:616.245761px;}
.y225{bottom:619.620895px;}
.y2b1{bottom:626.487579px;}
.y25f{bottom:626.490895px;}
.y1df{bottom:628.620895px;}
.y88{bottom:628.628095px;}
.yfa{bottom:628.649695px;}
.y1bc{bottom:628.656895px;}
.y20c{bottom:628.664095px;}
.y197{bottom:628.671295px;}
.y56{bottom:628.692941px;}
.y113{bottom:629.089672px;}
.ya4{bottom:631.507795px;}
.yc7{bottom:631.514995px;}
.y12{bottom:632.315094px;}
.y177{bottom:632.742761px;}
.y224{bottom:633.120895px;}
.y2b0{bottom:639.987579px;}
.y25e{bottom:639.990895px;}
.y87{bottom:646.620895px;}
.y1de{bottom:646.635295px;}
.yf9{bottom:646.642495px;}
.y1bb{bottom:646.649695px;}
.y20b{bottom:646.656895px;}
.y196{bottom:646.664095px;}
.y55{bottom:646.685741px;}
.y112{bottom:647.082472px;}
.y176{bottom:649.239761px;}
.ya3{bottom:649.500595px;}
.yc6{bottom:649.507795px;}
.y11{bottom:650.315094px;}
.y2af{bottom:653.487579px;}
.y25d{bottom:653.490895px;}
.y1dd{bottom:664.628095px;}
.y86{bottom:664.635295px;}
.y1ba{bottom:664.642495px;}
.y20a{bottom:664.649695px;}
.y195{bottom:664.656895px;}
.y54{bottom:664.678541px;}
.y111{bottom:665.075272px;}
.y2ae{bottom:666.987579px;}
.y25c{bottom:666.990895px;}
.yc5{bottom:667.500595px;}
.ya2{bottom:667.507795px;}
.y10{bottom:668.315094px;}
.y223{bottom:673.620895px;}
.y2ad{bottom:680.487579px;}
.y25b{bottom:680.490895px;}
.y1dc{bottom:682.620895px;}
.y85{bottom:682.628095px;}
.y1b9{bottom:682.635295px;}
.y209{bottom:682.642495px;}
.y194{bottom:682.649695px;}
.y53{bottom:682.671341px;}
.y110{bottom:683.075272px;}
.ya1{bottom:685.500595px;}
.yf{bottom:686.315094px;}
.y222{bottom:687.120895px;}
.y2ac{bottom:693.987579px;}
.y25a{bottom:693.990895px;}
.y84{bottom:700.620895px;}
.y1b8{bottom:700.628095px;}
.y208{bottom:700.635295px;}
.y193{bottom:700.642495px;}
.y1db{bottom:700.649741px;}
.y52{bottom:700.664141px;}
.y10f{bottom:701.082472px;}
.ya0{bottom:703.500595px;}
.ye{bottom:704.315094px;}
.y221{bottom:705.120895px;}
.y2ab{bottom:707.487579px;}
.y259{bottom:707.490895px;}
.y220{bottom:714.120941px;}
.y166{bottom:717.087021px;}
.y83{bottom:718.620895px;}
.y207{bottom:718.628095px;}
.y192{bottom:718.635295px;}
.y1da{bottom:718.642541px;}
.yf8{bottom:718.649741px;}
.y51{bottom:718.656941px;}
.y10e{bottom:719.075272px;}
.y2aa{bottom:720.987579px;}
.y258{bottom:720.990895px;}
.y9f{bottom:721.522241px;}
.yd{bottom:726.815094px;}
.y2a9{bottom:734.487579px;}
.y257{bottom:734.490895px;}
.y206{bottom:736.620895px;}
.y191{bottom:736.628095px;}
.y1d9{bottom:736.635341px;}
.y82{bottom:736.642541px;}
.y50{bottom:736.649741px;}
.y10d{bottom:737.125534px;}
.y175{bottom:738.327921px;}
.y9e{bottom:739.515041px;}
.yc4{bottom:739.556391px;}
.y21f{bottom:741.120941px;}
.yc{bottom:744.815094px;}
.y2a8{bottom:747.987579px;}
.y256{bottom:747.990895px;}
.y190{bottom:754.620895px;}
.y21e{bottom:754.620941px;}
.y1d8{bottom:754.628141px;}
.y81{bottom:754.635341px;}
.y4f{bottom:754.642541px;}
.y10c{bottom:755.118334px;}
.y174{bottom:756.555921px;}
.y9d{bottom:757.507841px;}
.yc3{bottom:757.549191px;}
.y2a7{bottom:761.487579px;}
.y255{bottom:761.490895px;}
.yb{bottom:762.815094px;}
.y21d{bottom:768.120941px;}
.y18f{bottom:772.620941px;}
.y80{bottom:772.628141px;}
.y4e{bottom:772.635341px;}
.y205{bottom:772.721995px;}
.y10b{bottom:773.111134px;}
.y173{bottom:774.705792px;}
.y2a6{bottom:774.987579px;}
.y254{bottom:774.990895px;}
.y9c{bottom:775.500641px;}
.yc2{bottom:775.541991px;}
.ya{bottom:780.815094px;}
.y21c{bottom:781.620941px;}
.y2a5{bottom:788.487579px;}
.y253{bottom:788.490895px;}
.y7f{bottom:790.620941px;}
.y4d{bottom:790.628141px;}
.y1d7{bottom:790.649741px;}
.y204{bottom:790.714795px;}
.y10a{bottom:791.103934px;}
.y172{bottom:792.855756px;}
.y9{bottom:798.815094px;}
.y2a4{bottom:801.987579px;}
.y252{bottom:801.990895px;}
.y4c{bottom:808.620941px;}
.y7e{bottom:808.628141px;}
.y21b{bottom:808.635341px;}
.y1d6{bottom:808.642541px;}
.y203{bottom:808.707595px;}
.yf7{bottom:808.714541px;}
.y109{bottom:809.096734px;}
.y171{bottom:811.023792px;}
.y2a3{bottom:815.487579px;}
.y251{bottom:815.490895px;}
.y8{bottom:816.815094px;}
.y7d{bottom:826.628141px;}
.y1b7{bottom:826.635341px;}
.y4b{bottom:826.642541px;}
.y18e{bottom:826.664141px;}
.y202{bottom:826.700395px;}
.yf6{bottom:826.707341px;}
.y108{bottom:827.089534px;}
.y2a2{bottom:828.987579px;}
.y250{bottom:828.990895px;}
.y170{bottom:829.167792px;}
.y7{bottom:839.315094px;}
.yed{bottom:841.676728px;}
.y2a1{bottom:842.487579px;}
.y24f{bottom:842.490895px;}
.y7c{bottom:844.620941px;}
.y1b6{bottom:844.628141px;}
.y4a{bottom:844.635341px;}
.y18d{bottom:844.656941px;}
.y201{bottom:844.693195px;}
.yf5{bottom:844.700141px;}
.y107{bottom:845.082334px;}
.y16f{bottom:847.311792px;}
.y2a0{bottom:855.987579px;}
.y24e{bottom:855.990895px;}
.yec{bottom:859.904728px;}
.y1b5{bottom:862.620941px;}
.y49{bottom:862.628141px;}
.y18c{bottom:862.649741px;}
.y200{bottom:862.685995px;}
.yf4{bottom:862.692941px;}
.y106{bottom:863.075134px;}
.y16e{bottom:865.455792px;}
.y29f{bottom:869.487579px;}
.y24d{bottom:869.490895px;}
.yeb{bottom:878.060728px;}
.y48{bottom:880.620941px;}
.y18b{bottom:880.642541px;}
.y1b4{bottom:880.649741px;}
.y21a{bottom:880.656941px;}
.y1ff{bottom:880.678795px;}
.yf3{bottom:880.685741px;}
.y105{bottom:881.089534px;}
.y29e{bottom:882.987579px;}
.y24c{bottom:882.990895px;}
.y16d{bottom:883.605756px;}
.y29d{bottom:896.487579px;}
.y24b{bottom:896.490895px;}
.y7b{bottom:898.620941px;}
.y18a{bottom:898.635341px;}
.y47{bottom:898.642541px;}
.y219{bottom:898.649741px;}
.y1fe{bottom:898.671595px;}
.yf2{bottom:898.678541px;}
.y104{bottom:899.082334px;}
.y16c{bottom:901.755719px;}
.y6{bottom:903.552612px;}
.yea{bottom:904.952728px;}
.y29c{bottom:909.987579px;}
.y24a{bottom:909.990895px;}
.y7a{bottom:916.620941px;}
.y189{bottom:916.628141px;}
.y46{bottom:916.635341px;}
.y218{bottom:916.642541px;}
.y1fd{bottom:916.664395px;}
.yf1{bottom:916.671341px;}
.y103{bottom:917.075134px;}
.ye9{bottom:918.452728px;}
.y16b{bottom:919.914774px;}
.y29b{bottom:923.487579px;}
.y249{bottom:923.490895px;}
.y188{bottom:934.620941px;}
.y45{bottom:934.628141px;}
.y217{bottom:934.635341px;}
.y1fc{bottom:934.657195px;}
.yf0{bottom:934.664141px;}
.y102{bottom:935.096734px;}
.y29a{bottom:936.987579px;}
.y248{bottom:936.990895px;}
.y16a{bottom:938.058774px;}
.ye8{bottom:939.179509px;}
.y5{bottom:939.565521px;}
.y299{bottom:950.487579px;}
.y247{bottom:950.490895px;}
.y44{bottom:952.620941px;}
.y216{bottom:952.628141px;}
.y187{bottom:952.635341px;}
.y79{bottom:952.649995px;}
.yef{bottom:952.656941px;}
.y101{bottom:953.089534px;}
.ye7{bottom:957.335509px;}
.y298{bottom:963.987579px;}
.y246{bottom:963.990895px;}
.y169{bottom:964.830774px;}
.y43{bottom:970.620941px;}
.y186{bottom:970.628141px;}
.y78{bottom:970.642795px;}
.yee{bottom:970.649741px;}
.y100{bottom:971.082334px;}
.y297{bottom:977.487579px;}
.y245{bottom:977.490895px;}
.y4{bottom:978.553528px;}
.ye6{bottom:984.227509px;}
.y185{bottom:988.620941px;}
.y77{bottom:988.635595px;}
.y42{bottom:988.642541px;}
.y168{bottom:988.674774px;}
.yff{bottom:989.075134px;}
.y296{bottom:990.987579px;}
.y244{bottom:990.990895px;}
.ye5{bottom:997.727509px;}
.y167{bottom:1002.174774px;}
.y295{bottom:1004.487579px;}
.y243{bottom:1004.490895px;}
.y76{bottom:1006.628395px;}
.y41{bottom:1006.635341px;}
.y1b3{bottom:1006.678795px;}
.yfe{bottom:1007.082334px;}
.y294{bottom:1017.987579px;}
.y242{bottom:1017.990895px;}
.y75{bottom:1024.621195px;}
.y40{bottom:1024.628141px;}
.y1b2{bottom:1024.671595px;}
.yfd{bottom:1025.075134px;}
.ye4{bottom:1026.803079px;}
.y293{bottom:1031.487579px;}
.y241{bottom:1031.490895px;}
.y3{bottom:1033.362579px;}
.y36{bottom:1035.750183px;}
.y74{bottom:1042.613995px;}
.y3f{bottom:1042.620941px;}
.y1b1{bottom:1042.664395px;}
.yfc{bottom:1043.075134px;}
.ye3{bottom:1043.300079px;}
.y292{bottom:1044.987579px;}
.y240{bottom:1044.990895px;}
.y37{bottom:1108.501465px;}
.y2{bottom:1112.297058px;}
.y9b{bottom:1126.524628px;}
.y3d{bottom:1126.524719px;}
.y3e{bottom:1126.920719px;}
.y1{bottom:1126.925079px;}
.hc{height:27.424500px;}
.hf{height:27.814500px;}
.h15{height:27.988800px;}
.h25{height:32.130000px;}
.ha{height:37.086000px;}
.he{height:39.735000px;}
.h16{height:39.984000px;}
.h18{height:41.424000px;}
.h14{height:42.384000px;}
.h24{height:42.840000px;}
.h22{height:43.785000px;}
.h3{height:45.696000px;}
.h23{height:45.814500px;}
.h13{height:46.704000px;}
.h2{height:47.231915px;}
.h10{height:47.232000px;}
.h1c{height:48.772727px;}
.h19{height:48.809386px;}
.h1b{height:48.844654px;}
.h1a{height:48.845020px;}
.h1d{height:48.845386px;}
.h1e{height:48.862800px;}
.h21{height:48.868690px;}
.h1f{height:48.868873px;}
.h20{height:48.869423px;}
.h26{height:49.632000px;}
.h17{height:52.430290px;}
.h9{height:52.980000px;}
.h12{height:53.406000px;}
.h11{height:53.709599px;}
.hb{height:55.860000px;}
.h8{height:58.380000px;}
.h7{height:61.120200px;}
.h6{height:67.194379px;}
.hd{height:73.908933px;}
.h4{height:77.142000px;}
.h5{height:137.088000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w2{width:313.738495px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:13.999512px;}
.x1{left:84.933002px;}
.x11{left:89.527345px;}
.x2{left:92.734348px;}
.x3{left:94.683150px;}
.xa{left:97.039352px;}
.x12{left:101.467320px;}
.x17{left:107.539352px;}
.x16{left:244.736710px;}
.x15{left:261.241035px;}
.x4{left:270.817497px;}
.x13{left:293.419320px;}
.xc{left:348.351608px;}
.x10{left:387.907352px;}
.x5{left:457.092911px;}
.xb{left:469.082971px;}
.x1a{left:477.562500px;}
.x18{left:479.599354px;}
.x19{left:485.513718px;}
.x7{left:496.154984px;}
.xe{left:570.109634px;}
.x14{left:632.785034px;}
.x6{left:694.929886px;}
.xf{left:712.885632px;}
.xd{left:715.503605px;}
.x9{left:753.380081px;}
@media print{
.v3{vertical-align:-16.000000pt;}
.v5{vertical-align:-14.933352pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.322591pt;}
.v7{vertical-align:16.000000pt;}
.v6{vertical-align:17.066569pt;}
.v4{vertical-align:20.880324pt;}
.v2{vertical-align:23.466471pt;}
.ls5{letter-spacing:-4.149273pt;}
.ls8{letter-spacing:-0.784000pt;}
.lsa{letter-spacing:-0.768000pt;}
.ls17{letter-spacing:-0.682667pt;}
.ls1b{letter-spacing:-0.600000pt;}
.ls7{letter-spacing:-0.522667pt;}
.ls18{letter-spacing:-0.418133pt;}
.ls9{letter-spacing:-0.365867pt;}
.ls6{letter-spacing:-0.261333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000001pt;}
.ls19{letter-spacing:0.000063pt;}
.ls1{letter-spacing:0.000086pt;}
.ls2{letter-spacing:0.000089pt;}
.ls1a{letter-spacing:0.400000pt;}
.ls0{letter-spacing:4.853333pt;}
.ls15{letter-spacing:92.152435pt;}
.ls16{letter-spacing:92.152597pt;}
.ls11{letter-spacing:95.079368pt;}
.ls12{letter-spacing:95.079531pt;}
.ls14{letter-spacing:112.973398pt;}
.ls13{letter-spacing:112.973724pt;}
.lsb{letter-spacing:182.338157pt;}
.lsd{letter-spacing:193.402197pt;}
.ls10{letter-spacing:200.062464pt;}
.lse{letter-spacing:200.232513pt;}
.lsf{letter-spacing:521.703868pt;}
.lsc{letter-spacing:524.630801pt;}
.ws0{word-spacing:-18.858667pt;}
.ws5{word-spacing:-12.282667pt;}
.ws8e{word-spacing:-11.916800pt;}
.ws2{word-spacing:-11.096533pt;}
.ws3{word-spacing:-11.040000pt;}
.wsc1{word-spacing:-9.344000pt;}
.ws10d{word-spacing:-9.160000pt;}
.ws1{word-spacing:-8.993600pt;}
.wsbf{word-spacing:-8.832000pt;}
.ws10c{word-spacing:-8.760000pt;}
.ws10b{word-spacing:-8.280000pt;}
.ws4{word-spacing:-8.176000pt;}
.ws92{word-spacing:-7.680000pt;}
.ws10e{word-spacing:-7.200000pt;}
.ws8f{word-spacing:-5.540267pt;}
.ws8{word-spacing:-2.464000pt;}
.ws7{word-spacing:-2.053333pt;}
.ws4d{word-spacing:-1.045333pt;}
.wsf5{word-spacing:-0.679467pt;}
.ws40{word-spacing:-0.574933pt;}
.wsef{word-spacing:-0.522667pt;}
.wsb5{word-spacing:-0.470400pt;}
.ws10f{word-spacing:-0.400000pt;}
.wse9{word-spacing:-0.313600pt;}
.wscd{word-spacing:-0.261333pt;}
.ws47{word-spacing:-0.209067pt;}
.ws86{word-spacing:-0.156800pt;}
.wsd7{word-spacing:-0.104533pt;}
.ws111{word-spacing:-0.080000pt;}
.ws110{word-spacing:-0.040000pt;}
.ws17{word-spacing:-0.036587pt;}
.ws6{word-spacing:0.000000pt;}
.ws20{word-spacing:0.052267pt;}
.wsb{word-spacing:0.104533pt;}
.ws5f{word-spacing:0.209067pt;}
.ws1c{word-spacing:0.261333pt;}
.ws3e{word-spacing:0.365867pt;}
.wsd5{word-spacing:0.418133pt;}
.wsa4{word-spacing:0.470400pt;}
.ws30{word-spacing:0.522667pt;}
.wsad{word-spacing:0.574933pt;}
.ws41{word-spacing:0.627200pt;}
.wsd3{word-spacing:0.682667pt;}
.wsda{word-spacing:0.731733pt;}
.wsbb{word-spacing:0.768000pt;}
.ws79{word-spacing:0.784000pt;}
.ws10a{word-spacing:0.836267pt;}
.ws87{word-spacing:0.888533pt;}
.ws4e{word-spacing:0.940800pt;}
.ws61{word-spacing:0.993067pt;}
.ws82{word-spacing:1.045333pt;}
.ws83{word-spacing:1.149867pt;}
.wsde{word-spacing:1.202133pt;}
.ws48{word-spacing:1.254400pt;}
.ws62{word-spacing:1.306667pt;}
.wsd6{word-spacing:1.358933pt;}
.ws94{word-spacing:1.411200pt;}
.wsb2{word-spacing:1.463467pt;}
.ws67{word-spacing:1.515733pt;}
.ws3f{word-spacing:1.568000pt;}
.ws9b{word-spacing:1.620267pt;}
.wsa5{word-spacing:1.724800pt;}
.wsd2{word-spacing:1.776000pt;}
.ws74{word-spacing:1.777067pt;}
.wsc{word-spacing:1.829333pt;}
.ws84{word-spacing:1.881600pt;}
.ws7e{word-spacing:1.986133pt;}
.wsf{word-spacing:2.038400pt;}
.ws63{word-spacing:2.090667pt;}
.wsfe{word-spacing:2.142933pt;}
.wsb4{word-spacing:2.195200pt;}
.wsba{word-spacing:2.208000pt;}
.wse1{word-spacing:2.247467pt;}
.ws106{word-spacing:2.352000pt;}
.wscf{word-spacing:2.404267pt;}
.ws6e{word-spacing:2.456533pt;}
.ws5d{word-spacing:2.561067pt;}
.wsbd{word-spacing:2.592000pt;}
.ws3a{word-spacing:2.665600pt;}
.wsb0{word-spacing:2.717867pt;}
.ws88{word-spacing:2.770133pt;}
.wsdd{word-spacing:2.822400pt;}
.ws2c{word-spacing:2.874667pt;}
.ws65{word-spacing:2.979200pt;}
.wsa2{word-spacing:3.031467pt;}
.ws2f{word-spacing:3.136000pt;}
.ws2e{word-spacing:3.188267pt;}
.ws7a{word-spacing:3.240533pt;}
.wse5{word-spacing:3.292800pt;}
.wsd8{word-spacing:3.345067pt;}
.ws5a{word-spacing:3.397333pt;}
.ws49{word-spacing:3.449600pt;}
.ws1e{word-spacing:3.554133pt;}
.ws7c{word-spacing:3.606400pt;}
.ws4a{word-spacing:3.658667pt;}
.ws35{word-spacing:3.710933pt;}
.ws10{word-spacing:3.763200pt;}
.ws1d{word-spacing:3.815467pt;}
.ws57{word-spacing:3.867733pt;}
.ws3d{word-spacing:3.920000pt;}
.ws60{word-spacing:3.972267pt;}
.ws16{word-spacing:4.024533pt;}
.wsa0{word-spacing:4.076800pt;}
.wsb6{word-spacing:4.181333pt;}
.ws8a{word-spacing:4.233600pt;}
.ws99{word-spacing:4.285867pt;}
.wsdc{word-spacing:4.390400pt;}
.ws95{word-spacing:4.494933pt;}
.wse0{word-spacing:4.547200pt;}
.ws6c{word-spacing:4.599467pt;}
.wsbe{word-spacing:4.656000pt;}
.ws73{word-spacing:4.704000pt;}
.ws66{word-spacing:4.756267pt;}
.ws29{word-spacing:4.808533pt;}
.wsaa{word-spacing:4.860800pt;}
.wsa9{word-spacing:4.965333pt;}
.wsed{word-spacing:5.122133pt;}
.ws4c{word-spacing:5.174400pt;}
.ws77{word-spacing:5.226667pt;}
.ws23{word-spacing:5.278933pt;}
.wsa8{word-spacing:5.331200pt;}
.wsd4{word-spacing:5.376000pt;}
.ws9f{word-spacing:5.383467pt;}
.ws1f{word-spacing:5.435733pt;}
.ws8c{word-spacing:5.488000pt;}
.wse2{word-spacing:5.592533pt;}
.ws100{word-spacing:5.697067pt;}
.ws85{word-spacing:5.749333pt;}
.wsab{word-spacing:5.801600pt;}
.wsff{word-spacing:5.853867pt;}
.wsb7{word-spacing:5.906133pt;}
.ws2b{word-spacing:5.958400pt;}
.ws5c{word-spacing:6.010667pt;}
.wsa7{word-spacing:6.062933pt;}
.ws7b{word-spacing:6.115200pt;}
.wsf4{word-spacing:6.167467pt;}
.ws4f{word-spacing:6.219733pt;}
.ws36{word-spacing:6.272000pt;}
.ws6d{word-spacing:6.376533pt;}
.ws5e{word-spacing:6.428800pt;}
.ws7f{word-spacing:6.481067pt;}
.ws34{word-spacing:6.533333pt;}
.wsb3{word-spacing:6.585600pt;}
.wsc8{word-spacing:6.637867pt;}
.ws108{word-spacing:6.690133pt;}
.wse4{word-spacing:6.794667pt;}
.ws8d{word-spacing:6.816000pt;}
.wsac{word-spacing:6.846933pt;}
.wse6{word-spacing:6.899200pt;}
.ws97{word-spacing:6.951467pt;}
.ws37{word-spacing:7.003733pt;}
.ws80{word-spacing:7.056000pt;}
.ws89{word-spacing:7.108267pt;}
.ws26{word-spacing:7.160533pt;}
.wscc{word-spacing:7.212800pt;}
.ws46{word-spacing:7.265067pt;}
.ws42{word-spacing:7.317333pt;}
.ws3b{word-spacing:7.369600pt;}
.ws58{word-spacing:7.526400pt;}
.wsd1{word-spacing:7.578667pt;}
.wsc9{word-spacing:7.630933pt;}
.ws4b{word-spacing:7.683200pt;}
.ws14{word-spacing:7.735467pt;}
.wsb1{word-spacing:7.787733pt;}
.ws54{word-spacing:7.840000pt;}
.ws75{word-spacing:7.892267pt;}
.ws96{word-spacing:7.944533pt;}
.ws98{word-spacing:7.996800pt;}
.ws68{word-spacing:8.049067pt;}
.wsa{word-spacing:8.101333pt;}
.ws7d{word-spacing:8.205867pt;}
.wsbc{word-spacing:8.208000pt;}
.wsb8{word-spacing:8.258133pt;}
.ws13{word-spacing:8.310400pt;}
.wsdb{word-spacing:8.362667pt;}
.ws9a{word-spacing:8.414933pt;}
.ws31{word-spacing:8.467200pt;}
.wsae{word-spacing:8.571733pt;}
.ws107{word-spacing:8.624000pt;}
.wse7{word-spacing:8.676267pt;}
.ws3c{word-spacing:8.728533pt;}
.wsaf{word-spacing:8.780800pt;}
.ws33{word-spacing:8.833067pt;}
.ws9{word-spacing:8.885333pt;}
.ws2a{word-spacing:8.937600pt;}
.ws76{word-spacing:9.042133pt;}
.wsa1{word-spacing:9.094400pt;}
.wsce{word-spacing:9.146667pt;}
.wsfc{word-spacing:9.198933pt;}
.ws44{word-spacing:9.251200pt;}
.ws103{word-spacing:9.303467pt;}
.ws45{word-spacing:9.408000pt;}
.wsd0{word-spacing:9.460267pt;}
.ws25{word-spacing:9.564800pt;}
.ws1b{word-spacing:9.721600pt;}
.ws43{word-spacing:9.773867pt;}
.wsd9{word-spacing:9.826133pt;}
.wsdf{word-spacing:9.930667pt;}
.wscb{word-spacing:9.982933pt;}
.wsfd{word-spacing:10.035200pt;}
.wsb9{word-spacing:10.139733pt;}
.wsf2{word-spacing:10.192000pt;}
.ws52{word-spacing:10.244267pt;}
.ws6f{word-spacing:10.348800pt;}
.ws38{word-spacing:10.505600pt;}
.wsfb{word-spacing:10.557867pt;}
.wsf1{word-spacing:10.662400pt;}
.wseb{word-spacing:10.714667pt;}
.ws6a{word-spacing:10.766933pt;}
.wsd{word-spacing:10.819200pt;}
.ws72{word-spacing:10.976000pt;}
.ws27{word-spacing:11.028267pt;}
.ws8b{word-spacing:11.080533pt;}
.ws71{word-spacing:11.341867pt;}
.ws81{word-spacing:11.498667pt;}
.wsec{word-spacing:11.603200pt;}
.wsa3{word-spacing:11.655467pt;}
.wsf3{word-spacing:11.707733pt;}
.ws101{word-spacing:11.864533pt;}
.wsf7{word-spacing:11.916800pt;}
.ws1a{word-spacing:11.969067pt;}
.wsf8{word-spacing:12.125867pt;}
.ws78{word-spacing:12.334933pt;}
.ws24{word-spacing:12.387200pt;}
.ws50{word-spacing:12.439467pt;}
.ws21{word-spacing:12.753067pt;}
.wse8{word-spacing:12.909867pt;}
.ws22{word-spacing:13.014400pt;}
.ws15{word-spacing:13.066667pt;}
.ws39{word-spacing:13.118933pt;}
.ws19{word-spacing:13.171200pt;}
.ws11{word-spacing:13.275733pt;}
.ws28{word-spacing:13.693867pt;}
.wsf0{word-spacing:13.850667pt;}
.ws32{word-spacing:14.059733pt;}
.ws9c{word-spacing:14.112000pt;}
.ws56{word-spacing:14.425600pt;}
.wsca{word-spacing:14.582400pt;}
.ws2d{word-spacing:14.843733pt;}
.ws18{word-spacing:14.896000pt;}
.ws6b{word-spacing:14.948267pt;}
.ws102{word-spacing:15.209600pt;}
.ws5b{word-spacing:15.314133pt;}
.ws59{word-spacing:15.418667pt;}
.ws55{word-spacing:15.523200pt;}
.ws12{word-spacing:15.575467pt;}
.ws9e{word-spacing:15.941333pt;}
.wsa6{word-spacing:15.993600pt;}
.wse3{word-spacing:16.098133pt;}
.wsf6{word-spacing:17.195733pt;}
.ws109{word-spacing:17.248000pt;}
.ws105{word-spacing:17.300267pt;}
.ws104{word-spacing:17.509333pt;}
.ws64{word-spacing:18.032000pt;}
.ws9d{word-spacing:18.345600pt;}
.wsc7{word-spacing:18.397867pt;}
.ws53{word-spacing:18.816000pt;}
.ws70{word-spacing:19.025067pt;}
.wsfa{word-spacing:19.756800pt;}
.wse{word-spacing:20.384000pt;}
.wsf9{word-spacing:20.488533pt;}
.wsea{word-spacing:25.349333pt;}
.ws51{word-spacing:31.569067pt;}
.wsee{word-spacing:33.764267pt;}
.ws90{word-spacing:71.509326pt;}
.ws91{word-spacing:71.509328pt;}
.ws93{word-spacing:71.509333pt;}
.ws69{word-spacing:333.866667pt;}
.wsc0{word-spacing:388.992000pt;}
.wsc4{word-spacing:425.941333pt;}
.wsc3{word-spacing:427.520000pt;}
.wsc6{word-spacing:446.762667pt;}
.wsc5{word-spacing:448.341333pt;}
.wsc2{word-spacing:598.349195pt;}
._4a{margin-left:-10.262187pt;}
._3e{margin-left:-9.235200pt;}
._e{margin-left:-6.643200pt;}
._7{margin-left:-5.383467pt;}
._1a{margin-left:-4.432960pt;}
._2{margin-left:-3.340800pt;}
._5{margin-left:-2.416000pt;}
._0{margin-left:-1.408000pt;}
._1{width:1.493333pt;}
._3{width:3.187200pt;}
._9{width:5.278914pt;}
._48{width:6.343467pt;}
._d{width:7.287467pt;}
._a{width:8.535147pt;}
._8{width:9.561572pt;}
._1b{width:10.751986pt;}
._4{width:13.247985pt;}
._c{width:14.216533pt;}
._6{width:15.434656pt;}
._b{width:18.375467pt;}
._4c{width:19.820800pt;}
._4d{width:22.820800pt;}
._49{width:26.122637pt;}
._4b{width:39.340800pt;}
._28{width:80.853328pt;}
._44{width:93.482646pt;}
._3f{width:96.554667pt;}
._3b{width:101.941333pt;}
._33{width:104.704000pt;}
._20{width:105.898662pt;}
._14{width:114.146123pt;}
._23{width:126.719995pt;}
._1e{width:135.722667pt;}
._40{width:146.901333pt;}
._2d{width:154.965328pt;}
._45{width:159.061313pt;}
._42{width:162.175980pt;}
._1d{width:184.362667pt;}
._32{width:187.477333pt;}
._37{width:195.882667pt;}
._43{width:201.813313pt;}
._3a{width:207.871993pt;}
._17{width:215.082667pt;}
._3d{width:216.704000pt;}
._18{width:222.506667pt;}
._15{width:243.456000pt;}
._24{width:276.693333pt;}
._12{width:284.415989pt;}
._46{width:285.823980pt;}
._19{width:291.682133pt;}
._10{width:304.469322pt;}
._21{width:317.141318pt;}
._47{width:327.765317pt;}
._2a{width:329.599968pt;}
._13{width:342.826667pt;}
._22{width:356.778651pt;}
._f{width:363.264000pt;}
._16{width:374.911990pt;}
._38{width:398.336000pt;}
._2b{width:414.250635pt;}
._27{width:421.589333pt;}
._34{width:436.677333pt;}
._36{width:461.781333pt;}
._25{width:469.034667pt;}
._2f{width:475.946628pt;}
._2e{width:489.514628pt;}
._41{width:491.946646pt;}
._29{width:507.903968pt;}
._1c{width:513.664000pt;}
._35{width:517.888000pt;}
._2c{width:525.525333pt;}
._39{width:537.941333pt;}
._31{width:547.523045pt;}
._30{width:611.298133pt;}
._3c{width:622.506667pt;}
._26{width:637.040000pt;}
._1f{width:641.578651pt;}
._11{width:792.917333pt;}
.fsf{font-size:26.133333pt;}
.fsb{font-size:28.000000pt;}
.fs10{font-size:29.866667pt;}
.fsd{font-size:36.586667pt;}
.fs7{font-size:37.333333pt;}
.fsa{font-size:40.000000pt;}
.fs4{font-size:41.066666pt;}
.fs0{font-size:42.666667pt;}
.fse{font-size:48.000000pt;}
.fsc{font-size:49.066666pt;}
.fs8{font-size:52.266667pt;}
.fs6{font-size:53.333333pt;}
.fs5{font-size:54.933333pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:69.333333pt;}
.fs9{font-size:86.443197pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y38{bottom:5.857096pt;}
.y24{bottom:66.836665pt;}
.y23{bottom:77.504669pt;}
.y136{bottom:86.929200pt;}
.y22{bottom:88.172668pt;}
.y286{bottom:88.880796pt;}
.y23f{bottom:89.440796pt;}
.y165{bottom:91.375997pt;}
.y157{bottom:91.407997pt;}
.y73{bottom:94.774129pt;}
.y9a{bottom:94.786929pt;}
.y1b0{bottom:94.818929pt;}
.y1d5{bottom:94.825329pt;}
.y12e{bottom:95.197067pt;}
.ye2{bottom:97.365862pt;}
.yc1{bottom:97.372262pt;}
.y21{bottom:98.840667pt;}
.y28f{bottom:100.263343pt;}
.y285{bottom:100.880796pt;}
.y23e{bottom:101.440796pt;}
.y135{bottom:101.993205pt;}
.y156{bottom:107.401597pt;}
.y164{bottom:107.479997pt;}
.y20{bottom:109.508667pt;}
.y72{bottom:110.774129pt;}
.y99{bottom:110.780529pt;}
.y1fb{bottom:110.799729pt;}
.y1af{bottom:110.812529pt;}
.y1d4{bottom:110.818929pt;}
.y28e{bottom:110.931343pt;}
.y12d{bottom:111.190667pt;}
.y284{bottom:112.880796pt;}
.ye1{bottom:113.359462pt;}
.yc0{bottom:113.365862pt;}
.y23d{bottom:113.440796pt;}
.y149{bottom:118.043739pt;}
.y155{bottom:123.395197pt;}
.y163{bottom:123.473597pt;}
.y283{bottom:124.880796pt;}
.y23c{bottom:125.440796pt;}
.y98{bottom:126.774129pt;}
.y71{bottom:126.780529pt;}
.y1fa{bottom:126.793329pt;}
.y1ae{bottom:126.806129pt;}
.y1d3{bottom:126.812529pt;}
.y12c{bottom:127.184267pt;}
.ye0{bottom:129.353062pt;}
.ybf{bottom:129.359462pt;}
.y28d{bottom:133.434009pt;}
.y148{bottom:134.246406pt;}
.y282{bottom:136.880796pt;}
.y23b{bottom:137.440796pt;}
.y3c{bottom:139.077332pt;}
.y154{bottom:139.388797pt;}
.y162{bottom:139.467197pt;}
.y35{bottom:139.966797pt;}
.y70{bottom:142.774129pt;}
.y1f9{bottom:142.786929pt;}
.y215{bottom:142.793329pt;}
.y1ad{bottom:142.799729pt;}
.y1d2{bottom:142.806129pt;}
.y12b{bottom:143.177867pt;}
.ydf{bottom:145.346662pt;}
.ybe{bottom:145.353062pt;}
.y281{bottom:148.880796pt;}
.y28c{bottom:149.431343pt;}
.y23a{bottom:149.440796pt;}
.y147{bottom:150.374406pt;}
.y3b{bottom:151.077332pt;}
.y153{bottom:155.382397pt;}
.y161{bottom:155.460797pt;}
.y34{bottom:155.960398pt;}
.y1f8{bottom:158.780529pt;}
.y214{bottom:158.786929pt;}
.y6f{bottom:158.793329pt;}
.y1d1{bottom:158.799729pt;}
.y12a{bottom:159.177867pt;}
.y280{bottom:160.880796pt;}
.yde{bottom:161.340262pt;}
.ybd{bottom:161.346662pt;}
.y239{bottom:161.440796pt;}
.y28b{bottom:165.428676pt;}
.y146{bottom:166.502406pt;}
.y3a{bottom:167.077332pt;}
.y152{bottom:171.375997pt;}
.y160{bottom:171.454397pt;}
.y33{bottom:171.954000pt;}
.y27f{bottom:172.880796pt;}
.y238{bottom:173.440796pt;}
.y1f7{bottom:174.774129pt;}
.y213{bottom:174.780529pt;}
.y6e{bottom:174.786929pt;}
.y1d0{bottom:174.793329pt;}
.y97{bottom:174.806129pt;}
.y39{bottom:175.077332pt;}
.ydd{bottom:177.333862pt;}
.ybc{bottom:177.340262pt;}
.y28a{bottom:181.426009pt;}
.y145{bottom:182.630406pt;}
.y27e{bottom:184.880796pt;}
.y237{bottom:185.440796pt;}
.y151{bottom:187.375997pt;}
.y15f{bottom:187.447997pt;}
.y32{bottom:187.986003pt;}
.y212{bottom:190.774129pt;}
.y6d{bottom:190.780529pt;}
.y1cf{bottom:190.786929pt;}
.y1f6{bottom:190.793329pt;}
.y96{bottom:190.799729pt;}
.y129{bottom:191.203599pt;}
.ybb{bottom:193.333862pt;}
.y27d{bottom:196.880796pt;}
.y289{bottom:197.423343pt;}
.y236{bottom:197.440796pt;}
.y144{bottom:198.758406pt;}
.y150{bottom:203.388797pt;}
.y15e{bottom:203.441597pt;}
.y31{bottom:203.979594pt;}
.y6c{bottom:206.774129pt;}
.y1ce{bottom:206.780529pt;}
.y1f5{bottom:206.786929pt;}
.y95{bottom:206.793329pt;}
.y128{bottom:207.197199pt;}
.y27c{bottom:208.880796pt;}
.ydc{bottom:209.333862pt;}
.yba{bottom:209.346662pt;}
.y235{bottom:209.440796pt;}
.y288{bottom:213.420676pt;}
.y143{bottom:214.886406pt;}
.y2a{bottom:219.283488pt;}
.y14f{bottom:219.382397pt;}
.y15d{bottom:219.435197pt;}
.y30{bottom:219.973206pt;}
.y27b{bottom:220.880796pt;}
.y234{bottom:221.440796pt;}
.y1cd{bottom:222.774129pt;}
.y1f4{bottom:222.780529pt;}
.y94{bottom:222.786929pt;}
.y1ac{bottom:222.793329pt;}
.y6b{bottom:222.825329pt;}
.y127{bottom:223.190799pt;}
.yb9{bottom:225.340262pt;}
.y287{bottom:229.418009pt;}
.y142{bottom:231.014406pt;}
.y27a{bottom:232.880796pt;}
.y233{bottom:233.440796pt;}
.y29{bottom:235.277079pt;}
.y14e{bottom:235.375997pt;}
.y15c{bottom:235.428797pt;}
.y2f{bottom:235.966797pt;}
.y1f3{bottom:238.774129pt;}
.y93{bottom:238.780529pt;}
.y1ab{bottom:238.786929pt;}
.y211{bottom:238.812529pt;}
.y6a{bottom:238.818929pt;}
.y126{bottom:239.184399pt;}
.yb8{bottom:241.333862pt;}
.ydb{bottom:241.474662pt;}
.y279{bottom:244.880796pt;}
.y232{bottom:245.440796pt;}
.y141{bottom:247.142406pt;}
.y291{bottom:249.061458pt;}
.y28{bottom:251.270671pt;}
.y14d{bottom:251.382397pt;}
.y15b{bottom:251.422397pt;}
.y2e{bottom:251.960409pt;}
.y92{bottom:254.774129pt;}
.y1aa{bottom:254.780529pt;}
.y1f2{bottom:254.806129pt;}
.y69{bottom:254.812529pt;}
.y125{bottom:255.177999pt;}
.y278{bottom:256.880796pt;}
.yb7{bottom:257.340262pt;}
.y231{bottom:257.440796pt;}
.yda{bottom:257.468262pt;}
.y140{bottom:263.281072pt;}
.y290{bottom:266.661458pt;}
.y27{bottom:267.264282pt;}
.y14c{bottom:267.375997pt;}
.y15a{bottom:267.415997pt;}
.y2d{bottom:267.954000pt;}
.y277{bottom:268.880796pt;}
.y230{bottom:269.440796pt;}
.y1a9{bottom:270.774129pt;}
.y91{bottom:270.780529pt;}
.y1f1{bottom:270.799729pt;}
.y68{bottom:270.806129pt;}
.y124{bottom:271.210019pt;}
.yb6{bottom:273.333862pt;}
.yd9{bottom:273.461862pt;}
.y13f{bottom:275.281072pt;}
.y276{bottom:280.880796pt;}
.y22f{bottom:281.440796pt;}
.y26{bottom:283.257874pt;}
.y14b{bottom:283.382397pt;}
.y159{bottom:283.409597pt;}
.y2c{bottom:283.989604pt;}
.y90{bottom:286.774129pt;}
.y1a8{bottom:286.786929pt;}
.y1f0{bottom:286.793329pt;}
.y67{bottom:286.799729pt;}
.y1cc{bottom:286.838129pt;}
.y123{bottom:287.203619pt;}
.yb5{bottom:289.378662pt;}
.yd8{bottom:289.455462pt;}
.y13e{bottom:291.409072pt;}
.y275{bottom:292.880796pt;}
.y22e{bottom:293.440796pt;}
.y25{bottom:299.257874pt;}
.y14a{bottom:299.375997pt;}
.y158{bottom:299.403197pt;}
.y2b{bottom:299.983215pt;}
.y1a7{bottom:302.780529pt;}
.y1ef{bottom:302.786929pt;}
.y66{bottom:302.793329pt;}
.y1cb{bottom:302.831729pt;}
.y122{bottom:303.197219pt;}
.y274{bottom:304.880796pt;}
.yb4{bottom:305.372262pt;}
.y22d{bottom:305.440796pt;}
.yd7{bottom:305.449062pt;}
.y13d{bottom:307.537072pt;}
.y273{bottom:316.880796pt;}
.y22c{bottom:317.440796pt;}
.y1a6{bottom:318.774129pt;}
.y1ee{bottom:318.780529pt;}
.y65{bottom:318.786929pt;}
.y1ca{bottom:318.825329pt;}
.y121{bottom:319.190819pt;}
.yb3{bottom:321.365862pt;}
.yd6{bottom:321.442662pt;}
.y13c{bottom:323.665072pt;}
.y272{bottom:328.880796pt;}
.y22b{bottom:329.440796pt;}
.y1ed{bottom:334.774129pt;}
.y64{bottom:334.780529pt;}
.y1a5{bottom:334.799729pt;}
.y1c9{bottom:334.818929pt;}
.y120{bottom:335.184419pt;}
.y17a{bottom:337.088542pt;}
.yb2{bottom:337.359462pt;}
.yd5{bottom:337.436262pt;}
.y13b{bottom:339.793072pt;}
.y271{bottom:340.880796pt;}
.y1f{bottom:346.057861pt;}
.y63{bottom:350.774129pt;}
.y1a4{bottom:350.793329pt;}
.y1c8{bottom:350.812529pt;}
.y1ec{bottom:350.857329pt;}
.y11f{bottom:351.178019pt;}
.y179{bottom:352.201457pt;}
.y270{bottom:352.880796pt;}
.yb1{bottom:353.353062pt;}
.yd4{bottom:353.429862pt;}
.y13a{bottom:355.921072pt;}
.y26f{bottom:364.880796pt;}
.y1e{bottom:366.057861pt;}
.y62{bottom:366.780529pt;}
.y1a3{bottom:366.786929pt;}
.y1c7{bottom:366.806129pt;}
.y1eb{bottom:366.850929pt;}
.y11e{bottom:367.178019pt;}
.y184{bottom:368.057332pt;}
.yb0{bottom:369.346662pt;}
.yd3{bottom:369.423462pt;}
.y139{bottom:372.049072pt;}
.y26e{bottom:376.880796pt;}
.y1d{bottom:382.057861pt;}
.y61{bottom:382.774129pt;}
.y1a2{bottom:382.780529pt;}
.y1c6{bottom:382.799729pt;}
.y1ea{bottom:382.844529pt;}
.y11d{bottom:383.178019pt;}
.y183{bottom:384.257324pt;}
.yaf{bottom:385.340262pt;}
.yd2{bottom:385.417062pt;}
.y26d{bottom:388.880796pt;}
.y138{bottom:395.949219pt;}
.y1c{bottom:398.057861pt;}
.y1a1{bottom:398.774129pt;}
.y8f{bottom:398.786929pt;}
.y1c5{bottom:398.793329pt;}
.y60{bottom:398.806129pt;}
.y1e9{bottom:398.838129pt;}
.y182{bottom:400.390666pt;}
.y26c{bottom:400.880796pt;}
.yae{bottom:401.333862pt;}
.yd1{bottom:401.410662pt;}
.y137{bottom:407.949219pt;}
.y26b{bottom:412.880796pt;}
.y1b{bottom:414.057861pt;}
.y1a0{bottom:414.774129pt;}
.y8e{bottom:414.780529pt;}
.y1c4{bottom:414.786929pt;}
.y210{bottom:414.793329pt;}
.y5f{bottom:414.799729pt;}
.y1e8{bottom:414.831729pt;}
.y11c{bottom:415.197219pt;}
.y181{bottom:416.524007pt;}
.yad{bottom:417.333862pt;}
.yd0{bottom:417.404262pt;}
.y22a{bottom:422.774129pt;}
.y26a{bottom:424.880796pt;}
.y134{bottom:429.573717pt;}
.y1a{bottom:430.057861pt;}
.y8d{bottom:430.774129pt;}
.y1c3{bottom:430.780529pt;}
.y20f{bottom:430.786929pt;}
.y5e{bottom:430.793329pt;}
.y19f{bottom:430.806129pt;}
.y1e7{bottom:430.825329pt;}
.y11b{bottom:431.190819pt;}
.y180{bottom:432.657349pt;}
.yac{bottom:433.340262pt;}
.ycf{bottom:433.397862pt;}
.y229{bottom:434.774129pt;}
.y269{bottom:436.880796pt;}
.y133{bottom:444.237717pt;}
.y8c{bottom:446.774129pt;}
.y20e{bottom:446.780529pt;}
.y5d{bottom:446.786929pt;}
.y19e{bottom:446.799729pt;}
.y1e6{bottom:446.818929pt;}
.y11a{bottom:447.184419pt;}
.y17f{bottom:448.790649pt;}
.y268{bottom:448.880796pt;}
.yab{bottom:449.333862pt;}
.yce{bottom:449.391462pt;}
.y19{bottom:450.057861pt;}
.y132{bottom:458.901717pt;}
.y267{bottom:460.880796pt;}
.y20d{bottom:462.774129pt;}
.y5c{bottom:462.780529pt;}
.y19d{bottom:462.793329pt;}
.y1c2{bottom:462.799729pt;}
.y8b{bottom:462.806129pt;}
.y1e5{bottom:462.812529pt;}
.y119{bottom:463.178019pt;}
.y17e{bottom:464.923991pt;}
.yaa{bottom:465.333862pt;}
.ycd{bottom:465.385062pt;}
.y18{bottom:466.057861pt;}
.y266{bottom:472.880796pt;}
.y131{bottom:473.565717pt;}
.y5b{bottom:478.774129pt;}
.y19c{bottom:478.786929pt;}
.y1c1{bottom:478.793329pt;}
.y8a{bottom:478.799729pt;}
.y1e4{bottom:478.806129pt;}
.y118{bottom:479.222819pt;}
.y17d{bottom:481.058682pt;}
.ya9{bottom:481.353062pt;}
.ycc{bottom:481.378662pt;}
.y17{bottom:482.057861pt;}
.y265{bottom:484.880796pt;}
.y130{bottom:488.229717pt;}
.y228{bottom:490.774129pt;}
.y19b{bottom:494.780529pt;}
.y1c0{bottom:494.786929pt;}
.y5a{bottom:494.793329pt;}
.y1e3{bottom:494.799729pt;}
.y117{bottom:495.216419pt;}
.y264{bottom:496.880796pt;}
.ya8{bottom:497.346662pt;}
.ycb{bottom:497.372262pt;}
.y16{bottom:498.057861pt;}
.y12f{bottom:502.893717pt;}
.y17c{bottom:504.962682pt;}
.y263{bottom:508.880796pt;}
.y19a{bottom:510.774129pt;}
.y1bf{bottom:510.780529pt;}
.y59{bottom:510.786929pt;}
.y1e2{bottom:510.793329pt;}
.y116{bottom:511.210019pt;}
.ya7{bottom:513.340262pt;}
.yca{bottom:513.365862pt;}
.y15{bottom:514.057861pt;}
.y227{bottom:514.774129pt;}
.y262{bottom:520.880796pt;}
.y17b{bottom:526.157349pt;}
.y1be{bottom:526.774129pt;}
.y58{bottom:526.780529pt;}
.y1e1{bottom:526.786929pt;}
.y199{bottom:526.831729pt;}
.y115{bottom:527.203619pt;}
.ya6{bottom:529.333862pt;}
.yc9{bottom:529.359462pt;}
.y14{bottom:530.057861pt;}
.y261{bottom:532.880796pt;}
.y226{bottom:538.774129pt;}
.y57{bottom:542.774129pt;}
.y1e0{bottom:542.780529pt;}
.y89{bottom:542.786929pt;}
.yfb{bottom:542.806129pt;}
.y1bd{bottom:542.812529pt;}
.y198{bottom:542.825329pt;}
.y114{bottom:543.197219pt;}
.y260{bottom:544.880796pt;}
.ya5{bottom:545.346662pt;}
.yc8{bottom:545.353062pt;}
.y13{bottom:546.057861pt;}
.y178{bottom:547.774010pt;}
.y225{bottom:550.774129pt;}
.y2b1{bottom:556.877848pt;}
.y25f{bottom:556.880796pt;}
.y1df{bottom:558.774129pt;}
.y88{bottom:558.780529pt;}
.yfa{bottom:558.799729pt;}
.y1bc{bottom:558.806129pt;}
.y20c{bottom:558.812529pt;}
.y197{bottom:558.818929pt;}
.y56{bottom:558.838170pt;}
.y113{bottom:559.190819pt;}
.ya4{bottom:561.340262pt;}
.yc7{bottom:561.346662pt;}
.y12{bottom:562.057861pt;}
.y177{bottom:562.438010pt;}
.y224{bottom:562.774129pt;}
.y2b0{bottom:568.877848pt;}
.y25e{bottom:568.880796pt;}
.y87{bottom:574.774129pt;}
.y1de{bottom:574.786929pt;}
.yf9{bottom:574.793329pt;}
.y1bb{bottom:574.799729pt;}
.y20b{bottom:574.806129pt;}
.y196{bottom:574.812529pt;}
.y55{bottom:574.831770pt;}
.y112{bottom:575.184419pt;}
.y176{bottom:577.102010pt;}
.ya3{bottom:577.333862pt;}
.yc6{bottom:577.340262pt;}
.y11{bottom:578.057861pt;}
.y2af{bottom:580.877848pt;}
.y25d{bottom:580.880796pt;}
.y1dd{bottom:590.780529pt;}
.y86{bottom:590.786929pt;}
.y1ba{bottom:590.793329pt;}
.y20a{bottom:590.799729pt;}
.y195{bottom:590.806129pt;}
.y54{bottom:590.825370pt;}
.y111{bottom:591.178019pt;}
.y2ae{bottom:592.877848pt;}
.y25c{bottom:592.880796pt;}
.yc5{bottom:593.333862pt;}
.ya2{bottom:593.340262pt;}
.y10{bottom:594.057861pt;}
.y223{bottom:598.774129pt;}
.y2ad{bottom:604.877848pt;}
.y25b{bottom:604.880796pt;}
.y1dc{bottom:606.774129pt;}
.y85{bottom:606.780529pt;}
.y1b9{bottom:606.786929pt;}
.y209{bottom:606.793329pt;}
.y194{bottom:606.799729pt;}
.y53{bottom:606.818970pt;}
.y110{bottom:607.178019pt;}
.ya1{bottom:609.333862pt;}
.yf{bottom:610.057861pt;}
.y222{bottom:610.774129pt;}
.y2ac{bottom:616.877848pt;}
.y25a{bottom:616.880796pt;}
.y84{bottom:622.774129pt;}
.y1b8{bottom:622.780529pt;}
.y208{bottom:622.786929pt;}
.y193{bottom:622.793329pt;}
.y1db{bottom:622.799770pt;}
.y52{bottom:622.812570pt;}
.y10f{bottom:623.184419pt;}
.ya0{bottom:625.333862pt;}
.ye{bottom:626.057861pt;}
.y221{bottom:626.774129pt;}
.y2ab{bottom:628.877848pt;}
.y259{bottom:628.880796pt;}
.y220{bottom:634.774170pt;}
.y166{bottom:637.410685pt;}
.y83{bottom:638.774129pt;}
.y207{bottom:638.780529pt;}
.y192{bottom:638.786929pt;}
.y1da{bottom:638.793370pt;}
.yf8{bottom:638.799770pt;}
.y51{bottom:638.806170pt;}
.y10e{bottom:639.178019pt;}
.y2aa{bottom:640.877848pt;}
.y258{bottom:640.880796pt;}
.y9f{bottom:641.353103pt;}
.yd{bottom:646.057861pt;}
.y2a9{bottom:652.877848pt;}
.y257{bottom:652.880796pt;}
.y206{bottom:654.774129pt;}
.y191{bottom:654.780529pt;}
.y1d9{bottom:654.786970pt;}
.y82{bottom:654.793370pt;}
.y50{bottom:654.799770pt;}
.y10d{bottom:655.222697pt;}
.y175{bottom:656.291485pt;}
.y9e{bottom:657.346703pt;}
.yc4{bottom:657.383459pt;}
.y21f{bottom:658.774170pt;}
.yc{bottom:662.057861pt;}
.y2a8{bottom:664.877848pt;}
.y256{bottom:664.880796pt;}
.y190{bottom:670.774129pt;}
.y21e{bottom:670.774170pt;}
.y1d8{bottom:670.780570pt;}
.y81{bottom:670.786970pt;}
.y4f{bottom:670.793370pt;}
.y10c{bottom:671.216297pt;}
.y174{bottom:672.494152pt;}
.y9d{bottom:673.340303pt;}
.yc3{bottom:673.377059pt;}
.y2a7{bottom:676.877848pt;}
.y255{bottom:676.880796pt;}
.yb{bottom:678.057861pt;}
.y21d{bottom:682.774170pt;}
.y18f{bottom:686.774170pt;}
.y80{bottom:686.780570pt;}
.y4e{bottom:686.786970pt;}
.y205{bottom:686.863996pt;}
.y10b{bottom:687.209897pt;}
.y173{bottom:688.627371pt;}
.y2a6{bottom:688.877848pt;}
.y254{bottom:688.880796pt;}
.y9c{bottom:689.333903pt;}
.yc2{bottom:689.370659pt;}
.ya{bottom:694.057861pt;}
.y21c{bottom:694.774170pt;}
.y2a5{bottom:700.877848pt;}
.y253{bottom:700.880796pt;}
.y7f{bottom:702.774170pt;}
.y4d{bottom:702.780570pt;}
.y1d7{bottom:702.799770pt;}
.y204{bottom:702.857596pt;}
.y10a{bottom:703.203497pt;}
.y172{bottom:704.760672pt;}
.y9{bottom:710.057861pt;}
.y2a4{bottom:712.877848pt;}
.y252{bottom:712.880796pt;}
.y4c{bottom:718.774170pt;}
.y7e{bottom:718.780570pt;}
.y21b{bottom:718.786970pt;}
.y1d6{bottom:718.793370pt;}
.y203{bottom:718.851196pt;}
.yf7{bottom:718.857370pt;}
.y109{bottom:719.197097pt;}
.y171{bottom:720.910038pt;}
.y2a3{bottom:724.877848pt;}
.y251{bottom:724.880796pt;}
.y8{bottom:726.057861pt;}
.y7d{bottom:734.780570pt;}
.y1b7{bottom:734.786970pt;}
.y4b{bottom:734.793370pt;}
.y18e{bottom:734.812570pt;}
.y202{bottom:734.844796pt;}
.yf6{bottom:734.850970pt;}
.y108{bottom:735.190697pt;}
.y2a2{bottom:736.877848pt;}
.y250{bottom:736.880796pt;}
.y170{bottom:737.038038pt;}
.y7{bottom:746.057861pt;}
.yed{bottom:748.157092pt;}
.y2a1{bottom:748.877848pt;}
.y24f{bottom:748.880796pt;}
.y7c{bottom:750.774170pt;}
.y1b6{bottom:750.780570pt;}
.y4a{bottom:750.786970pt;}
.y18d{bottom:750.806170pt;}
.y201{bottom:750.838396pt;}
.yf5{bottom:750.844570pt;}
.y107{bottom:751.184297pt;}
.y16f{bottom:753.166038pt;}
.y2a0{bottom:760.877848pt;}
.y24e{bottom:760.880796pt;}
.yec{bottom:764.359758pt;}
.y1b5{bottom:766.774170pt;}
.y49{bottom:766.780570pt;}
.y18c{bottom:766.799770pt;}
.y200{bottom:766.831996pt;}
.yf4{bottom:766.838170pt;}
.y106{bottom:767.177897pt;}
.y16e{bottom:769.294038pt;}
.y29f{bottom:772.877848pt;}
.y24d{bottom:772.880796pt;}
.yeb{bottom:780.498425pt;}
.y48{bottom:782.774170pt;}
.y18b{bottom:782.793370pt;}
.y1b4{bottom:782.799770pt;}
.y21a{bottom:782.806170pt;}
.y1ff{bottom:782.825596pt;}
.yf3{bottom:782.831770pt;}
.y105{bottom:783.190697pt;}
.y29e{bottom:784.877848pt;}
.y24c{bottom:784.880796pt;}
.y16d{bottom:785.427339pt;}
.y29d{bottom:796.877848pt;}
.y24b{bottom:796.880796pt;}
.y7b{bottom:798.774170pt;}
.y18a{bottom:798.786970pt;}
.y47{bottom:798.793370pt;}
.y219{bottom:798.799770pt;}
.y1fe{bottom:798.819196pt;}
.yf2{bottom:798.825370pt;}
.y104{bottom:799.184297pt;}
.y16c{bottom:801.560639pt;}
.y6{bottom:803.157878pt;}
.yea{bottom:804.402425pt;}
.y29c{bottom:808.877848pt;}
.y24a{bottom:808.880796pt;}
.y7a{bottom:814.774170pt;}
.y189{bottom:814.780570pt;}
.y46{bottom:814.786970pt;}
.y218{bottom:814.793370pt;}
.y1fd{bottom:814.812796pt;}
.yf1{bottom:814.818970pt;}
.y103{bottom:815.177897pt;}
.ye9{bottom:816.402425pt;}
.y16b{bottom:817.702021pt;}
.y29b{bottom:820.877848pt;}
.y249{bottom:820.880796pt;}
.y188{bottom:830.774170pt;}
.y45{bottom:830.780570pt;}
.y217{bottom:830.786970pt;}
.y1fc{bottom:830.806396pt;}
.yf0{bottom:830.812570pt;}
.y102{bottom:831.197097pt;}
.y29a{bottom:832.877848pt;}
.y248{bottom:832.880796pt;}
.y16a{bottom:833.830021pt;}
.ye8{bottom:834.826230pt;}
.y5{bottom:835.169352pt;}
.y299{bottom:844.877848pt;}
.y247{bottom:844.880796pt;}
.y44{bottom:846.774170pt;}
.y216{bottom:846.780570pt;}
.y187{bottom:846.786970pt;}
.y79{bottom:846.799996pt;}
.yef{bottom:846.806170pt;}
.y101{bottom:847.190697pt;}
.ye7{bottom:850.964896pt;}
.y298{bottom:856.877848pt;}
.y246{bottom:856.880796pt;}
.y169{bottom:857.627355pt;}
.y43{bottom:862.774170pt;}
.y186{bottom:862.780570pt;}
.y78{bottom:862.793596pt;}
.yee{bottom:862.799770pt;}
.y100{bottom:863.184297pt;}
.y297{bottom:868.877848pt;}
.y245{bottom:868.880796pt;}
.y4{bottom:869.825358pt;}
.ye6{bottom:874.868896pt;}
.y185{bottom:878.774170pt;}
.y77{bottom:878.787196pt;}
.y42{bottom:878.793370pt;}
.y168{bottom:878.822021pt;}
.yff{bottom:879.177897pt;}
.y296{bottom:880.877848pt;}
.y244{bottom:880.880796pt;}
.ye5{bottom:886.868896pt;}
.y167{bottom:890.822021pt;}
.y295{bottom:892.877848pt;}
.y243{bottom:892.880796pt;}
.y76{bottom:894.780796pt;}
.y41{bottom:894.786970pt;}
.y1b3{bottom:894.825596pt;}
.yfe{bottom:895.184297pt;}
.y294{bottom:904.877848pt;}
.y242{bottom:904.880796pt;}
.y75{bottom:910.774396pt;}
.y40{bottom:910.780570pt;}
.y1b2{bottom:910.819196pt;}
.yfd{bottom:911.177897pt;}
.ye4{bottom:912.713848pt;}
.y293{bottom:916.877848pt;}
.y241{bottom:916.880796pt;}
.y3{bottom:918.544515pt;}
.y36{bottom:920.666829pt;}
.y74{bottom:926.767996pt;}
.y3f{bottom:926.774170pt;}
.y1b1{bottom:926.812796pt;}
.yfc{bottom:927.177897pt;}
.ye3{bottom:927.377848pt;}
.y292{bottom:928.877848pt;}
.y240{bottom:928.880796pt;}
.y37{bottom:985.334635pt;}
.y2{bottom:988.708496pt;}
.y9b{bottom:1001.355225pt;}
.y3d{bottom:1001.355306pt;}
.y3e{bottom:1001.707306pt;}
.y1{bottom:1001.711182pt;}
.hc{height:24.377333pt;}
.hf{height:24.724000pt;}
.h15{height:24.878933pt;}
.h25{height:28.560000pt;}
.ha{height:32.965333pt;}
.he{height:35.320000pt;}
.h16{height:35.541333pt;}
.h18{height:36.821333pt;}
.h14{height:37.674667pt;}
.h24{height:38.080000pt;}
.h22{height:38.920000pt;}
.h3{height:40.618667pt;}
.h23{height:40.724000pt;}
.h13{height:41.514667pt;}
.h2{height:41.983924pt;}
.h10{height:41.984000pt;}
.h1c{height:43.353535pt;}
.h19{height:43.386121pt;}
.h1b{height:43.417470pt;}
.h1a{height:43.417795pt;}
.h1d{height:43.418121pt;}
.h1e{height:43.433600pt;}
.h21{height:43.438836pt;}
.h1f{height:43.438998pt;}
.h20{height:43.439487pt;}
.h26{height:44.117333pt;}
.h17{height:46.604702pt;}
.h9{height:47.093333pt;}
.h12{height:47.472000pt;}
.h11{height:47.741866pt;}
.hb{height:49.653333pt;}
.h8{height:51.893333pt;}
.h7{height:54.329067pt;}
.h6{height:59.728337pt;}
.hd{height:65.696829pt;}
.h4{height:68.570667pt;}
.h5{height:121.856000pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w2{width:278.878662pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:12.444010pt;}
.x1{left:75.496002pt;}
.x11{left:79.579862pt;}
.x2{left:82.430532pt;}
.x3{left:84.162800pt;}
.xa{left:86.257202pt;}
.x12{left:90.193174pt;}
.x17{left:95.590535pt;}
.x16{left:217.543742pt;}
.x15{left:232.214254pt;}
.x4{left:240.726664pt;}
.x13{left:260.817174pt;}
.xc{left:309.645874pt;}
.x10{left:344.806535pt;}
.x5{left:406.304810pt;}
.xb{left:416.962641pt;}
.x1a{left:424.500000pt;}
.x18{left:426.310537pt;}
.x19{left:431.567749pt;}
.x7{left:441.026652pt;}
.xe{left:506.764119pt;}
.x14{left:562.475586pt;}
.x6{left:617.715454pt;}
.xf{left:633.676117pt;}
.xd{left:636.003204pt;}
.x9{left:669.671183pt;}
}




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