
    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_1eef6dfc82f7c1d8d671e13a.woff')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_fbdf317cb11e5b6c6eea2e29.woff')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_7025182970d36b18f96019c9.woff')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_60e3c0a32792f26a73653f7a.woff')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_70748c214ed6acf27db08816.woff')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_70cd15815fd4ed830ba58c5b.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_7c35f76071c5f05e24b508a9.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_c5c6ab68ee0720ce2922979e.woff')format("woff");}.ff8{font-family:ff8;line-height:0.719000;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_cdf63e20426e3595e4866ce2.woff')format("woff");}.ff9{font-family:ff9;line-height:0.712000;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_ed0e368fcaf4ea8bcf363eee.woff')format("woff");}.ffa{font-family:ffa;line-height:0.700000;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_a12d6e98e278a8ae6338868f.woff')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.v8{vertical-align:-18.000000px;}
.v4{vertical-align:-16.800110px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.488000px;}
.v2{vertical-align:9.550415px;}
.v7{vertical-align:17.865052px;}
.v6{vertical-align:19.194659px;}
.v3{vertical-align:26.399780px;}
.v5{vertical-align:54.000000px;}
.ls15{letter-spacing:-2.520000px;}
.ls16{letter-spacing:-1.125000px;}
.ls2{letter-spacing:-1.050000px;}
.ls19{letter-spacing:-0.900000px;}
.ls17{letter-spacing:-0.675000px;}
.ls3{letter-spacing:-0.540000px;}
.ls14{letter-spacing:-0.135000px;}
.ls1{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.000002px;}
.ls6{letter-spacing:0.000007px;}
.ls5{letter-spacing:0.352800px;}
.ls1b{letter-spacing:0.675000px;}
.ls4{letter-spacing:0.823200px;}
.ls18{letter-spacing:0.834960px;}
.ls0{letter-spacing:5.460000px;}
.ls9{letter-spacing:77.005764px;}
.lsb{letter-spacing:81.405000px;}
.ls11{letter-spacing:103.770000px;}
.lsc{letter-spacing:169.335000px;}
.ls10{letter-spacing:182.037501px;}
.ls12{letter-spacing:197.104500px;}
.lsa{letter-spacing:209.835000px;}
.ls8{letter-spacing:335.519359px;}
.lse{letter-spacing:357.885000px;}
.lsf{letter-spacing:384.660000px;}
.lsd{letter-spacing:389.475000px;}
.ls13{letter-spacing:398.925000px;}
.ls7{letter-spacing:646.838953px;}
.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;}
}
.ws72{word-spacing:-13.818000px;}
.ws3{word-spacing:-12.483600px;}
.ws4{word-spacing:-12.420000px;}
.ws8{word-spacing:-11.880000px;}
.wseb{word-spacing:-11.426400px;}
.ws0{word-spacing:-10.176000px;}
.ws2{word-spacing:-10.117800px;}
.wsb6{word-spacing:-9.936000px;}
.ws5{word-spacing:-9.855000px;}
.wsea{word-spacing:-9.315000px;}
.ws1{word-spacing:-8.148000px;}
.wsf8{word-spacing:-7.965000px;}
.wsc5{word-spacing:-7.335000px;}
.wsf7{word-spacing:-6.898500px;}
.ws4f{word-spacing:-6.468000px;}
.wsb5{word-spacing:-6.232800px;}
.wsbc{word-spacing:-4.512000px;}
.wsd5{word-spacing:-4.230000px;}
.wsbb{word-spacing:-3.936000px;}
.wsd4{word-spacing:-1.890000px;}
.wsd3{word-spacing:-1.722000px;}
.wsab{word-spacing:-1.352400px;}
.ws24{word-spacing:-0.999600px;}
.wsdd{word-spacing:-0.823200px;}
.ws7{word-spacing:-0.780000px;}
.ws7a{word-spacing:-0.705600px;}
.wsf9{word-spacing:-0.675000px;}
.ws61{word-spacing:-0.470400px;}
.wsd{word-spacing:-0.411600px;}
.ws12{word-spacing:-0.176400px;}
.ws8d{word-spacing:-0.117600px;}
.wsfa{word-spacing:-0.090000px;}
.ws6{word-spacing:0.000000px;}
.ws6f{word-spacing:0.058800px;}
.wsac{word-spacing:0.117600px;}
.wsa4{word-spacing:0.235200px;}
.ws46{word-spacing:0.294000px;}
.wsaa{word-spacing:0.470400px;}
.wsd7{word-spacing:0.675000px;}
.ws82{word-spacing:0.705600px;}
.ws7d{word-spacing:0.999600px;}
.ws63{word-spacing:1.117200px;}
.wsd6{word-spacing:1.125000px;}
.ws27{word-spacing:1.234800px;}
.ws51{word-spacing:1.352400px;}
.ws14{word-spacing:1.470000px;}
.ws3b{word-spacing:1.528800px;}
.wsa3{word-spacing:1.587600px;}
.ws13{word-spacing:1.646400px;}
.wsf1{word-spacing:1.705200px;}
.wsad{word-spacing:1.764000px;}
.wsb{word-spacing:1.822800px;}
.ws66{word-spacing:1.881600px;}
.ws9c{word-spacing:1.940400px;}
.ws1a{word-spacing:1.999200px;}
.wse3{word-spacing:2.058000px;}
.ws9f{word-spacing:2.116800px;}
.ws90{word-spacing:2.234400px;}
.ws5e{word-spacing:2.469600px;}
.wsb3{word-spacing:2.528400px;}
.ws25{word-spacing:2.587200px;}
.ws91{word-spacing:2.646000px;}
.ws5a{word-spacing:2.763600px;}
.ws83{word-spacing:2.940000px;}
.ws8a{word-spacing:2.998800px;}
.ws4e{word-spacing:3.057600px;}
.ws8b{word-spacing:3.116400px;}
.wsa8{word-spacing:3.175200px;}
.ws2d{word-spacing:3.234000px;}
.wsdf{word-spacing:3.292800px;}
.ws89{word-spacing:3.351600px;}
.ws5c{word-spacing:3.410400px;}
.ws65{word-spacing:3.586800px;}
.wsda{word-spacing:3.763200px;}
.wsef{word-spacing:3.822000px;}
.ws8e{word-spacing:3.880800px;}
.ws10{word-spacing:4.057200px;}
.ws8c{word-spacing:4.116000px;}
.ws58{word-spacing:4.174800px;}
.ws97{word-spacing:4.233600px;}
.ws1c{word-spacing:4.292400px;}
.ws60{word-spacing:4.351200px;}
.wsbd{word-spacing:4.410000px;}
.wsae{word-spacing:4.468800px;}
.wsf{word-spacing:4.527600px;}
.ws76{word-spacing:4.645200px;}
.ws2f{word-spacing:4.704000px;}
.ws23{word-spacing:4.762800px;}
.ws87{word-spacing:4.821600px;}
.ws7f{word-spacing:4.880400px;}
.ws22{word-spacing:4.939200px;}
.ws81{word-spacing:4.998000px;}
.ws15{word-spacing:5.056800px;}
.ws92{word-spacing:5.115600px;}
.ws1d{word-spacing:5.233200px;}
.ws43{word-spacing:5.350800px;}
.ws98{word-spacing:5.409600px;}
.wse7{word-spacing:5.527200px;}
.wse0{word-spacing:5.586000px;}
.wsd8{word-spacing:5.644800px;}
.ws96{word-spacing:5.703600px;}
.ws59{word-spacing:5.880000px;}
.ws93{word-spacing:5.938800px;}
.ws21{word-spacing:5.997600px;}
.ws4b{word-spacing:6.056400px;}
.ws49{word-spacing:6.115200px;}
.ws28{word-spacing:6.174000px;}
.wsdc{word-spacing:6.291600px;}
.wse2{word-spacing:6.350400px;}
.ws20{word-spacing:6.409200px;}
.ws8f{word-spacing:6.526800px;}
.ws70{word-spacing:6.585600px;}
.ws6b{word-spacing:6.644400px;}
.ws1e{word-spacing:6.762000px;}
.wse9{word-spacing:6.820800px;}
.ws45{word-spacing:6.879600px;}
.ws19{word-spacing:6.938400px;}
.wsa9{word-spacing:6.997200px;}
.ws99{word-spacing:7.056000px;}
.ws71{word-spacing:7.114800px;}
.ws5f{word-spacing:7.350000px;}
.ws56{word-spacing:7.408800px;}
.ws26{word-spacing:7.526400px;}
.ws3a{word-spacing:7.644000px;}
.wsf6{word-spacing:7.695000px;}
.wsa{word-spacing:7.761600px;}
.ws2b{word-spacing:7.820400px;}
.ws9e{word-spacing:7.938000px;}
.wsc{word-spacing:8.114400px;}
.ws80{word-spacing:8.173200px;}
.ws85{word-spacing:8.408400px;}
.wsec{word-spacing:8.467200px;}
.ws64{word-spacing:8.643600px;}
.wsba{word-spacing:8.694000px;}
.ws47{word-spacing:8.702400px;}
.ws5b{word-spacing:8.761200px;}
.wsf5{word-spacing:8.820000px;}
.ws75{word-spacing:8.937600px;}
.wsb4{word-spacing:8.996400px;}
.ws35{word-spacing:9.055200px;}
.wsb1{word-spacing:9.172800px;}
.wsc1{word-spacing:9.231600px;}
.ws11{word-spacing:9.290400px;}
.ws2e{word-spacing:9.408000px;}
.ws6a{word-spacing:9.466800px;}
.wsa7{word-spacing:9.760800px;}
.wsde{word-spacing:9.819600px;}
.wsf0{word-spacing:9.996000px;}
.ws6e{word-spacing:10.172400px;}
.ws36{word-spacing:10.231200px;}
.ws4a{word-spacing:10.290000px;}
.ws42{word-spacing:10.348800px;}
.ws67{word-spacing:10.407600px;}
.ws38{word-spacing:10.466400px;}
.wsdb{word-spacing:10.525200px;}
.wsaf{word-spacing:10.701600px;}
.wsf2{word-spacing:10.878000px;}
.ws29{word-spacing:10.936800px;}
.ws39{word-spacing:10.995600px;}
.ws77{word-spacing:11.054400px;}
.ws6c{word-spacing:11.113200px;}
.wsb0{word-spacing:11.172000px;}
.ws9b{word-spacing:11.230800px;}
.ws1b{word-spacing:11.289600px;}
.ws4d{word-spacing:11.407200px;}
.ws3e{word-spacing:11.466000px;}
.ws18{word-spacing:11.524800px;}
.ws7e{word-spacing:11.583600px;}
.ws4c{word-spacing:11.701200px;}
.ws33{word-spacing:11.818800px;}
.ws78{word-spacing:12.054000px;}
.wse1{word-spacing:12.230400px;}
.ws52{word-spacing:12.289200px;}
.wsc0{word-spacing:12.406800px;}
.ws54{word-spacing:12.524400px;}
.ws53{word-spacing:12.818400px;}
.ws5d{word-spacing:12.994800px;}
.ws50{word-spacing:13.171200px;}
.ws94{word-spacing:13.347600px;}
.wse{word-spacing:13.641600px;}
.ws40{word-spacing:13.700400px;}
.ws3f{word-spacing:13.759200px;}
.wsee{word-spacing:13.818000px;}
.wsa0{word-spacing:13.876800px;}
.ws88{word-spacing:13.935600px;}
.ws16{word-spacing:14.112000px;}
.wsa1{word-spacing:14.229600px;}
.ws73{word-spacing:14.582400px;}
.ws57{word-spacing:14.700000px;}
.ws7b{word-spacing:14.758800px;}
.wse8{word-spacing:14.876400px;}
.ws31{word-spacing:14.994000px;}
.ws37{word-spacing:15.346800px;}
.ws68{word-spacing:15.405600px;}
.wsa5{word-spacing:15.699600px;}
.ws2c{word-spacing:15.758400px;}
.wsd9{word-spacing:15.934800px;}
.ws41{word-spacing:15.993600px;}
.wsb2{word-spacing:16.464000px;}
.ws3d{word-spacing:16.522800px;}
.ws84{word-spacing:16.640400px;}
.ws17{word-spacing:16.993200px;}
.wsbe{word-spacing:17.346000px;}
.ws9a{word-spacing:17.404800px;}
.wse6{word-spacing:17.698800px;}
.ws32{word-spacing:17.757600px;}
.ws7c{word-spacing:17.992800px;}
.ws44{word-spacing:18.051600px;}
.ws3c{word-spacing:18.345600px;}
.ws55{word-spacing:18.522000px;}
.wsf4{word-spacing:18.992400px;}
.ws34{word-spacing:19.110000px;}
.wse4{word-spacing:19.168800px;}
.ws69{word-spacing:19.286400px;}
.wsf3{word-spacing:19.345200px;}
.wsa2{word-spacing:19.404000px;}
.wsa6{word-spacing:20.109600px;}
.wsed{word-spacing:20.521200px;}
.ws9{word-spacing:20.815200px;}
.ws62{word-spacing:21.932400px;}
.wse5{word-spacing:22.108800px;}
.ws6d{word-spacing:22.344000px;}
.ws86{word-spacing:22.755600px;}
.ws79{word-spacing:22.990800px;}
.ws1f{word-spacing:23.167200px;}
.ws2a{word-spacing:25.048800px;}
.ws48{word-spacing:25.107600px;}
.ws9d{word-spacing:25.401600px;}
.ws74{word-spacing:25.636800px;}
.ws95{word-spacing:27.518400px;}
.ws30{word-spacing:29.223600px;}
.wsbf{word-spacing:39.690000px;}
.wsc2{word-spacing:43.110000px;}
.wscc{word-spacing:47.970000px;}
.wsb8{word-spacing:66.480000px;}
.wsc8{word-spacing:70.515000px;}
.wsc7{word-spacing:73.579485px;}
.wsb7{word-spacing:94.272000px;}
.wsb9{word-spacing:95.040000px;}
.wsd1{word-spacing:120.555000px;}
.wsd0{word-spacing:121.590000px;}
.wsc6{word-spacing:131.174994px;}
.wsca{word-spacing:132.524994px;}
.wsce{word-spacing:135.540000px;}
.wsc4{word-spacing:136.890000px;}
.wscf{word-spacing:191.520000px;}
.wsc3{word-spacing:198.855000px;}
.wscb{word-spacing:205.380000px;}
.wsd2{word-spacing:225.945000px;}
.wsc9{word-spacing:252.899991px;}
.wscd{word-spacing:254.249991px;}
._15{margin-left:-28.249200px;}
._11{margin-left:-18.414000px;}
._14{margin-left:-17.325000px;}
._16{margin-left:-15.052800px;}
._8{margin-left:-11.682000px;}
._9{margin-left:-9.398400px;}
._12{margin-left:-7.606200px;}
._1{margin-left:-5.694000px;}
._c{margin-left:-4.632600px;}
._5{margin-left:-3.355800px;}
._3{margin-left:-2.310000px;}
._0{margin-left:-1.008000px;}
._4{width:1.339800px;}
._6{width:2.569200px;}
._13{width:4.051320px;}
._d{width:5.665800px;}
._f{width:7.638120px;}
._e{width:8.796480px;}
._57{width:10.403788px;}
._10{width:11.537400px;}
._b{width:14.279991px;}
._a{width:16.847986px;}
._5b{width:19.797600px;}
._5a{width:23.172600px;}
._7{width:38.033983px;}
._58{width:45.445501px;}
._3f{width:46.620000px;}
._3e{width:47.969994px;}
._3d{width:50.985000px;}
._3b{width:60.989992px;}
._3c{width:67.064991px;}
._56{width:74.157900px;}
._1c{width:76.992000px;}
._21{width:80.736000px;}
._22{width:82.272000px;}
._1d{width:91.968000px;}
._2f{width:95.136000px;}
._1e{width:98.064000px;}
._2c{width:100.416000px;}
._1f{width:102.144000px;}
._26{width:103.968000px;}
._24{width:105.024000px;}
._33{width:115.392000px;}
._59{width:116.685000px;}
._23{width:117.888000px;}
._25{width:124.722208px;}
._27{width:127.248000px;}
._29{width:129.840000px;}
._54{width:133.110000px;}
._34{width:134.496000px;}
._38{width:139.151994px;}
._30{width:141.060526px;}
._47{width:145.395000px;}
._39{width:162.576000px;}
._44{width:166.428000px;}
._40{width:182.024992px;}
._18{width:185.688592px;}
._1a{width:187.992600px;}
._4d{width:196.080000px;}
._48{width:198.360000px;}
._4a{width:200.025000px;}
._2e{width:202.902000px;}
._53{width:213.966600px;}
._42{width:215.235000px;}
._52{width:216.846000px;}
._19{width:221.688592px;}
._51{width:229.587600px;}
._43{width:234.450000px;}
._4c{width:249.119992px;}
._2d{width:260.112000px;}
._41{width:261.535791px;}
._46{width:262.754991px;}
._31{width:266.304000px;}
._45{width:275.174992px;}
._2b{width:280.272000px;}
._49{width:284.099469px;}
._37{width:286.488588px;}
._36{width:309.912583px;}
._4b{width:328.140000px;}
._55{width:343.755000px;}
._2a{width:350.020200px;}
._4e{width:351.990000px;}
._32{width:354.486000px;}
._4f{width:391.635000px;}
._50{width:431.838000px;}
._3a{width:564.390000px;}
._28{width:592.032000px;}
._1b{width:666.246000px;}
._20{width:676.566000px;}
._17{width:1062.534576px;}
._35{width:1084.433990px;}
._2{width:1518.100150px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:29.400000px;}
.fse{font-size:31.500000px;}
.fsd{font-size:33.600000px;}
.fs2{font-size:42.000000px;}
.fs8{font-size:45.000000px;}
.fs5{font-size:46.199999px;}
.fs0{font-size:48.000000px;}
.fsb{font-size:54.000000px;}
.fsa{font-size:55.199999px;}
.fs9{font-size:58.800000px;}
.fs7{font-size:60.000000px;}
.fs6{font-size:61.800000px;}
.fs4{font-size:66.000000px;}
.fs1{font-size:78.000000px;}
.fs3{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.ya{bottom:75.796800px;}
.y9{bottom:87.798300px;}
.yc3{bottom:93.702003px;}
.y175{bottom:99.264328px;}
.y173{bottom:99.275551px;}
.y172{bottom:99.298034px;}
.y161{bottom:99.307934px;}
.y16f{bottom:99.309258px;}
.y16c{bottom:99.320482px;}
.y160{bottom:99.330417px;}
.y15f{bottom:99.341654px;}
.y23f{bottom:99.342728px;}
.y16b{bottom:99.342965px;}
.y15e{bottom:99.364137px;}
.y16a{bottom:99.365448px;}
.y15c{bottom:99.375361px;}
.y169{bottom:99.387931px;}
.y15b{bottom:99.397844px;}
.y168{bottom:99.410414px;}
.y12a{bottom:99.419203px;}
.y15a{bottom:99.420327px;}
.y158{bottom:99.431552px;}
.y167{bottom:99.432897px;}
.y150{bottom:99.442776px;}
.y129{bottom:99.443224px;}
.y12f{bottom:99.443271px;}
.y166{bottom:99.455380px;}
.y128{bottom:99.456854px;}
.y11c{bottom:99.461998px;}
.y127{bottom:99.480874px;}
.y126{bottom:99.504895px;}
.y8{bottom:99.799800px;}
.y286{bottom:100.839014px;}
.y19b{bottom:101.127445px;}
.y188{bottom:101.134645px;}
.y47{bottom:103.152598px;}
.y5b{bottom:103.950289px;}
.y1ce{bottom:104.734203px;}
.y20d{bottom:105.342728px;}
.yc0{bottom:106.649695px;}
.y90{bottom:106.700095px;}
.yf6{bottom:107.745153px;}
.y136{bottom:108.316795px;}
.yc2{bottom:108.702003px;}
.y7{bottom:111.801300px;}
.y23e{bottom:112.842728px;}
.y285{bottom:114.339014px;}
.y1cd{bottom:118.234203px;}
.y20c{bottom:118.842728px;}
.y187{bottom:119.127445px;}
.y19a{bottom:119.134645px;}
.y46{bottom:121.145398px;}
.y5a{bottom:121.943089px;}
.y6{bottom:123.802800px;}
.ybf{bottom:124.642495px;}
.y8f{bottom:124.692895px;}
.yf5{bottom:125.737953px;}
.y14a{bottom:125.835250px;}
.y144{bottom:125.846546px;}
.y135{bottom:126.323995px;}
.y139{bottom:126.324295px;}
.y23d{bottom:126.342728px;}
.y284{bottom:127.839014px;}
.y1cc{bottom:131.734203px;}
.y20b{bottom:132.342728px;}
.y5{bottom:135.804300px;}
.y199{bottom:137.127445px;}
.y186{bottom:137.170657px;}
.y45{bottom:139.138198px;}
.y23c{bottom:139.842728px;}
.y59{bottom:139.935889px;}
.y283{bottom:141.339014px;}
.ybe{bottom:142.635295px;}
.y8e{bottom:142.685695px;}
.yf4{bottom:143.795553px;}
.y11b{bottom:143.802753px;}
.y134{bottom:144.316795px;}
.y138{bottom:144.317095px;}
.y1cb{bottom:145.234203px;}
.y20a{bottom:145.842728px;}
.y4{bottom:147.805800px;}
.y23b{bottom:153.342728px;}
.y282{bottom:154.839014px;}
.y198{bottom:155.134645px;}
.y185{bottom:155.163457px;}
.y44{bottom:157.130998px;}
.y58{bottom:157.928689px;}
.y1ca{bottom:158.734203px;}
.y209{bottom:159.342728px;}
.ybd{bottom:160.628095px;}
.y8d{bottom:160.678495px;}
.yf3{bottom:161.788353px;}
.y11a{bottom:161.795553px;}
.y137{bottom:162.309895px;}
.y133{bottom:162.316795px;}
.y23a{bottom:166.842728px;}
.y281{bottom:168.339014px;}
.y1c9{bottom:172.234203px;}
.y208{bottom:172.842728px;}
.y197{bottom:173.127445px;}
.y184{bottom:173.156257px;}
.y43{bottom:175.123798px;}
.y57{bottom:175.921489px;}
.ybc{bottom:178.620895px;}
.y8c{bottom:178.671295px;}
.yf2{bottom:179.781153px;}
.y119{bottom:179.788353px;}
.y239{bottom:180.342728px;}
.y280{bottom:181.839014px;}
.y1c8{bottom:185.734203px;}
.y207{bottom:186.342728px;}
.y2d{bottom:186.361656px;}
.y196{bottom:191.141857px;}
.y183{bottom:191.149057px;}
.y42{bottom:193.123810px;}
.y238{bottom:193.842728px;}
.y56{bottom:193.914289px;}
.y27f{bottom:195.339014px;}
.ybb{bottom:196.620895px;}
.y8b{bottom:196.664095px;}
.yf1{bottom:197.773953px;}
.y118{bottom:197.781153px;}
.y1c7{bottom:199.234203px;}
.y206{bottom:199.842728px;}
.y2c{bottom:199.861656px;}
.y237{bottom:207.342728px;}
.y27e{bottom:208.839014px;}
.y195{bottom:209.134657px;}
.y182{bottom:209.141857px;}
.y41{bottom:211.131010px;}
.y55{bottom:211.907089px;}
.y1c6{bottom:212.734203px;}
.y205{bottom:213.342728px;}
.y2b{bottom:213.361656px;}
.yba{bottom:214.620895px;}
.y8a{bottom:214.656895px;}
.yf0{bottom:215.766753px;}
.y117{bottom:215.773953px;}
.y236{bottom:220.842728px;}
.y143{bottom:221.747841px;}
.y27d{bottom:222.339014px;}
.y2a{bottom:226.861656px;}
.y194{bottom:227.127457px;}
.y181{bottom:227.134657px;}
.y40{bottom:229.123810px;}
.y54{bottom:229.928689px;}
.y89{bottom:232.649695px;}
.yef{bottom:233.759553px;}
.y116{bottom:233.766753px;}
.y235{bottom:234.342728px;}
.y27c{bottom:235.839014px;}
.y142{bottom:236.747841px;}
.y204{bottom:240.342728px;}
.y180{bottom:245.127457px;}
.y193{bottom:245.134657px;}
.y3f{bottom:247.174210px;}
.y234{bottom:247.842728px;}
.y53{bottom:247.921489px;}
.y27b{bottom:249.339014px;}
.y88{bottom:250.642495px;}
.yb9{bottom:250.649695px;}
.y141{bottom:251.747841px;}
.yee{bottom:251.752353px;}
.y115{bottom:251.759553px;}
.y203{bottom:253.842728px;}
.y12e{bottom:255.911168px;}
.y132{bottom:255.911190px;}
.y12d{bottom:255.935164px;}
.y131{bottom:255.935186px;}
.y12c{bottom:255.959159px;}
.y130{bottom:255.959228px;}
.y12b{bottom:255.983202px;}
.y1c5{bottom:256.237953px;}
.y233{bottom:261.342728px;}
.y27a{bottom:262.839014px;}
.y192{bottom:263.127457px;}
.y17f{bottom:263.134657px;}
.y3e{bottom:265.167010px;}
.y52{bottom:265.914289px;}
.y202{bottom:267.342728px;}
.y87{bottom:268.635295px;}
.yb8{bottom:268.642495px;}
.yed{bottom:269.745153px;}
.y114{bottom:269.752353px;}
.y29{bottom:270.593079px;}
.y232{bottom:274.842728px;}
.y279{bottom:276.339014px;}
.y201{bottom:280.842728px;}
.y17e{bottom:281.127457px;}
.y191{bottom:281.156096px;}
.y3d{bottom:283.159810px;}
.y51{bottom:283.907089px;}
.y86{bottom:286.628095px;}
.yb7{bottom:286.635295px;}
.yec{bottom:287.737953px;}
.y113{bottom:287.745153px;}
.y231{bottom:288.342728px;}
.y278{bottom:289.839014px;}
.y28{bottom:293.093079px;}
.y190{bottom:299.148896px;}
.y17d{bottom:299.177719px;}
.y3c{bottom:301.152610px;}
.y1c4{bottom:301.237953px;}
.y230{bottom:301.842728px;}
.y50{bottom:301.928689px;}
.y277{bottom:303.339014px;}
.y85{bottom:304.620895px;}
.yb6{bottom:304.628095px;}
.yeb{bottom:305.737953px;}
.y200{bottom:307.842728px;}
.y27{bottom:311.093079px;}
.y22f{bottom:315.342728px;}
.y276{bottom:316.839014px;}
.y18f{bottom:317.141696px;}
.y17c{bottom:317.170519px;}
.y3b{bottom:319.145410px;}
.y1c3{bottom:319.237953px;}
.y4f{bottom:319.921489px;}
.y1ff{bottom:321.342728px;}
.y84{bottom:322.620895px;}
.y112{bottom:323.802730px;}
.y22e{bottom:328.842728px;}
.y275{bottom:330.339014px;}
.y26{bottom:333.593079px;}
.y1fe{bottom:334.842728px;}
.y18e{bottom:335.134496px;}
.y17b{bottom:335.163319px;}
.y3a{bottom:337.138210px;}
.y4e{bottom:337.914289px;}
.y83{bottom:340.620895px;}
.yb5{bottom:340.671295px;}
.yea{bottom:341.795530px;}
.y22d{bottom:342.342728px;}
.y274{bottom:343.839014px;}
.y1fd{bottom:348.342728px;}
.y25{bottom:351.593079px;}
.y18d{bottom:353.127296px;}
.y17a{bottom:353.156119px;}
.y39{bottom:355.131010px;}
.y1c2{bottom:355.237930px;}
.y22c{bottom:355.842728px;}
.y4d{bottom:355.907089px;}
.y273{bottom:357.339014px;}
.yb4{bottom:358.664095px;}
.ye9{bottom:359.788330px;}
.y1fc{bottom:361.842728px;}
.y1c1{bottom:368.737930px;}
.y22b{bottom:369.342728px;}
.y24{bottom:369.593079px;}
.y272{bottom:370.839014px;}
.y18c{bottom:371.141719px;}
.y179{bottom:371.148919px;}
.y38{bottom:373.123810px;}
.y4c{bottom:373.928689px;}
.y1fb{bottom:375.342728px;}
.yb3{bottom:376.656895px;}
.y82{bottom:376.736095px;}
.ye8{bottom:377.781130px;}
.y151{bottom:377.824024px;}
.y145{bottom:377.846544px;}
.y1c0{bottom:382.237930px;}
.y22a{bottom:382.842728px;}
.y271{bottom:384.339014px;}
.y11d{bottom:384.875244px;}
.y11e{bottom:384.876892px;}
.y1fa{bottom:388.842728px;}
.y18b{bottom:389.134519px;}
.y178{bottom:389.141719px;}
.y37{bottom:391.138210px;}
.y4b{bottom:391.921489px;}
.y23{bottom:392.093079px;}
.yb2{bottom:394.649695px;}
.y81{bottom:394.728895px;}
.y1bf{bottom:395.737930px;}
.ye7{bottom:395.773930px;}
.y229{bottom:396.342728px;}
.y270{bottom:397.839014px;}
.y1f9{bottom:402.342728px;}
.y18a{bottom:407.127319px;}
.y177{bottom:407.134519px;}
.y36{bottom:409.131010px;}
.y1be{bottom:409.237930px;}
.y228{bottom:409.842728px;}
.y4a{bottom:409.914289px;}
.y22{bottom:410.093079px;}
.y26f{bottom:411.339014px;}
.yb1{bottom:412.642495px;}
.y80{bottom:412.721695px;}
.ye6{bottom:413.766730px;}
.y1bd{bottom:422.737930px;}
.y227{bottom:423.342728px;}
.y26e{bottom:424.839014px;}
.y176{bottom:425.127319px;}
.y189{bottom:425.137345px;}
.y35{bottom:427.123810px;}
.y49{bottom:427.907089px;}
.y21{bottom:428.093079px;}
.y1f8{bottom:429.342728px;}
.yb0{bottom:430.635295px;}
.y7f{bottom:430.714495px;}
.ye5{bottom:431.759530px;}
.y1bc{bottom:436.237930px;}
.y226{bottom:436.842728px;}
.y26d{bottom:438.339014px;}
.y34{bottom:445.123810px;}
.y48{bottom:445.941898px;}
.y20{bottom:446.093079px;}
.yaf{bottom:448.628095px;}
.y7e{bottom:448.707295px;}
.y1bb{bottom:449.737930px;}
.ye4{bottom:449.752330px;}
.y225{bottom:450.342728px;}
.y26c{bottom:451.839014px;}
.y170{bottom:457.138004px;}
.y152{bottom:457.271521px;}
.y146{bottom:457.294042px;}
.y1ba{bottom:463.237930px;}
.y224{bottom:463.842728px;}
.y26b{bottom:465.339014px;}
.y1f7{bottom:465.342773px;}
.yae{bottom:466.620895px;}
.y7d{bottom:466.700095px;}
.ye3{bottom:467.745130px;}
.y1f{bottom:468.593079px;}
.y11f{bottom:469.452890px;}
.y1b9{bottom:476.737930px;}
.y223{bottom:477.342728px;}
.y26a{bottom:478.839014px;}
.y1f6{bottom:478.842773px;}
.y1a2{bottom:481.534927px;}
.y28c{bottom:483.342728px;}
.yad{bottom:484.620895px;}
.y7c{bottom:484.692895px;}
.ye2{bottom:485.737930px;}
.y1e{bottom:486.593079px;}
.y222{bottom:490.842728px;}
.y269{bottom:492.339014px;}
.y1f5{bottom:492.342773px;}
.y1a1{bottom:496.534927px;}
.y28b{bottom:496.842728px;}
.y7b{bottom:502.685695px;}
.y111{bottom:503.737930px;}
.ye1{bottom:503.745130px;}
.y221{bottom:504.342728px;}
.y1d{bottom:504.593079px;}
.y268{bottom:505.839014px;}
.y1f4{bottom:505.842773px;}
.y162{bottom:507.244180px;}
.y171{bottom:507.245504px;}
.y153{bottom:507.379021px;}
.y14b{bottom:507.390246px;}
.y28a{bottom:510.342728px;}
.y1a0{bottom:511.534927px;}
.y220{bottom:517.842728px;}
.y267{bottom:519.339014px;}
.y1f3{bottom:519.342773px;}
.yac{bottom:520.620895px;}
.y7a{bottom:520.678495px;}
.ye0{bottom:521.737930px;}
.y1b8{bottom:521.766730px;}
.y110{bottom:521.809930px;}
.y1c{bottom:522.593079px;}
.y19f{bottom:526.534927px;}
.y21f{bottom:531.342728px;}
.y266{bottom:532.839014px;}
.y1f2{bottom:532.842773px;}
.yab{bottom:538.649695px;}
.y79{bottom:538.671295px;}
.ydf{bottom:539.737930px;}
.y1b7{bottom:539.759530px;}
.y10f{bottom:539.802730px;}
.y1b{bottom:540.593079px;}
.y19e{bottom:541.534927px;}
.y21e{bottom:544.842728px;}
.y265{bottom:546.339014px;}
.y289{bottom:546.342773px;}
.y120{bottom:554.028888px;}
.y19d{bottom:556.534927px;}
.yaa{bottom:556.642495px;}
.y78{bottom:556.664095px;}
.yde{bottom:557.745130px;}
.y1b6{bottom:557.752330px;}
.y10e{bottom:557.795530px;}
.y21d{bottom:558.342728px;}
.y1a{bottom:558.593079px;}
.y264{bottom:559.839014px;}
.y1f1{bottom:559.842773px;}
.y163{bottom:570.592930px;}
.y154{bottom:570.727771px;}
.yc1{bottom:571.355255px;}
.y19c{bottom:571.534927px;}
.y21c{bottom:571.842728px;}
.y263{bottom:573.339014px;}
.y1f0{bottom:573.342773px;}
.ya9{bottom:574.635295px;}
.y77{bottom:574.656895px;}
.ydd{bottom:575.737930px;}
.y1b5{bottom:575.745130px;}
.y10d{bottom:575.788330px;}
.y19{bottom:581.093079px;}
.y21b{bottom:585.342728px;}
.y262{bottom:586.839014px;}
.y1ef{bottom:586.842773px;}
.ya8{bottom:592.628095px;}
.y76{bottom:592.649695px;}
.ydc{bottom:593.737930px;}
.y10c{bottom:593.781130px;}
.y21a{bottom:598.842728px;}
.y18{bottom:599.093079px;}
.y261{bottom:600.339014px;}
.y1ee{bottom:600.342773px;}
.ya7{bottom:610.620895px;}
.y75{bottom:610.642495px;}
.y1b4{bottom:611.752330px;}
.y10b{bottom:611.773930px;}
.y219{bottom:612.342728px;}
.y260{bottom:613.839014px;}
.y1ed{bottom:613.842773px;}
.y17{bottom:617.093079px;}
.y164{bottom:619.609179px;}
.y16d{bottom:619.621726px;}
.y155{bottom:619.744020px;}
.y14c{bottom:619.755246px;}
.y147{bottom:619.766540px;}
.y218{bottom:625.842728px;}
.y25f{bottom:627.339014px;}
.y1ec{bottom:627.342773px;}
.ya6{bottom:628.628095px;}
.y74{bottom:628.635295px;}
.y1b3{bottom:629.745130px;}
.ydb{bottom:629.752330px;}
.y10a{bottom:629.766730px;}
.y217{bottom:639.342728px;}
.y16{bottom:639.593079px;}
.y25e{bottom:640.839014px;}
.y1eb{bottom:640.842773px;}
.ya5{bottom:646.620895px;}
.y73{bottom:646.628095px;}
.y121{bottom:647.604886px;}
.y1b2{bottom:647.737930px;}
.yda{bottom:647.745130px;}
.y109{bottom:647.759530px;}
.y216{bottom:652.842728px;}
.y25d{bottom:654.339014px;}
.y1ea{bottom:654.342773px;}
.y15{bottom:657.593079px;}
.y72{bottom:664.620895px;}
.ya4{bottom:664.628095px;}
.yd9{bottom:665.737930px;}
.y1b1{bottom:665.745130px;}
.y108{bottom:665.752330px;}
.y215{bottom:666.342728px;}
.y25c{bottom:667.839014px;}
.y288{bottom:667.842773px;}
.y14{bottom:675.593079px;}
.y214{bottom:679.842728px;}
.y25b{bottom:681.339014px;}
.y1e9{bottom:681.342773px;}
.ya3{bottom:682.620895px;}
.y71{bottom:682.635295px;}
.y1b0{bottom:683.737930px;}
.y107{bottom:683.745130px;}
.yd8{bottom:683.773976px;}
.y213{bottom:693.342728px;}
.y25a{bottom:694.839014px;}
.y1e8{bottom:694.842773px;}
.y13{bottom:698.093079px;}
.ya2{bottom:700.620895px;}
.y70{bottom:700.628095px;}
.y106{bottom:701.737930px;}
.yd7{bottom:701.766776px;}
.y1af{bottom:701.773976px;}
.y165{bottom:704.400429px;}
.y16e{bottom:704.412976px;}
.y156{bottom:704.535270px;}
.y148{bottom:704.557790px;}
.y212{bottom:706.842728px;}
.y259{bottom:708.339014px;}
.y1e7{bottom:708.342773px;}
.y6f{bottom:718.620895px;}
.yd6{bottom:719.759576px;}
.y1ae{bottom:719.766776px;}
.y211{bottom:720.342728px;}
.y258{bottom:721.839014px;}
.y1e6{bottom:721.842773px;}
.y122{bottom:726.324886px;}
.y210{bottom:733.842728px;}
.y257{bottom:735.339014px;}
.y1e5{bottom:735.342773px;}
.y6e{bottom:736.620895px;}
.yd5{bottom:737.752376px;}
.y1ad{bottom:737.759576px;}
.y20f{bottom:747.342728px;}
.y256{bottom:748.839014px;}
.y1e4{bottom:748.842773px;}
.ya1{bottom:754.642541px;}
.yd4{bottom:755.745176px;}
.y1ac{bottom:755.752376px;}
.y255{bottom:762.339014px;}
.y1e3{bottom:762.342773px;}
.y12{bottom:762.548112px;}
.y157{bottom:768.300270px;}
.y14d{bottom:768.311496px;}
.y149{bottom:768.322790px;}
.y6d{bottom:772.620941px;}
.ya0{bottom:772.635341px;}
.yd3{bottom:773.737976px;}
.y1ab{bottom:773.745176px;}
.y254{bottom:775.839014px;}
.y287{bottom:775.842773px;}
.y11{bottom:783.548112px;}
.y253{bottom:789.339014px;}
.y1e2{bottom:789.342773px;}
.y6c{bottom:790.620941px;}
.y9f{bottom:790.628141px;}
.yd2{bottom:791.737976px;}
.y105{bottom:791.745176px;}
.y252{bottom:802.839014px;}
.y1e1{bottom:802.842773px;}
.y10{bottom:804.548112px;}
.y9e{bottom:808.620941px;}
.y6b{bottom:808.635341px;}
.y104{bottom:809.737976px;}
.yd1{bottom:809.788376px;}
.y1aa{bottom:809.802776px;}
.y123{bottom:810.900884px;}
.y251{bottom:816.339014px;}
.y1e0{bottom:816.342773px;}
.yf{bottom:825.552612px;}
.y6a{bottom:826.628141px;}
.y9d{bottom:826.779595px;}
.yd0{bottom:827.781176px;}
.y1a9{bottom:827.795576px;}
.y103{bottom:827.817176px;}
.y250{bottom:829.839014px;}
.y1df{bottom:829.842773px;}
.y14e{bottom:835.878996px;}
.y24f{bottom:843.339014px;}
.y1de{bottom:843.342773px;}
.y69{bottom:844.620941px;}
.y9c{bottom:844.772395px;}
.ycf{bottom:845.773976px;}
.y1a8{bottom:845.788376px;}
.y102{bottom:845.809976px;}
.y24e{bottom:856.839014px;}
.y1dd{bottom:856.842773px;}
.ye{bottom:861.589528px;}
.y68{bottom:862.642358px;}
.y9b{bottom:862.765195px;}
.yce{bottom:863.766776px;}
.y1a7{bottom:863.781176px;}
.y101{bottom:863.802776px;}
.y24d{bottom:870.339014px;}
.y1dc{bottom:870.342773px;}
.y67{bottom:880.635158px;}
.y9a{bottom:880.757995px;}
.ycd{bottom:881.759576px;}
.y1a6{bottom:881.773976px;}
.y100{bottom:881.795576px;}
.y24c{bottom:883.839014px;}
.y1db{bottom:883.842773px;}
.y124{bottom:895.476882px;}
.y24b{bottom:897.339014px;}
.y1da{bottom:897.342773px;}
.y66{bottom:898.627958px;}
.y99{bottom:898.750795px;}
.ycc{bottom:899.752376px;}
.y1a5{bottom:899.766776px;}
.yff{bottom:899.788376px;}
.yd{bottom:900.577528px;}
.y174{bottom:908.071797px;}
.y15d{bottom:908.171606px;}
.y159{bottom:908.227796px;}
.y14f{bottom:908.250244px;}
.y24a{bottom:910.839014px;}
.y1d9{bottom:910.842773px;}
.y65{bottom:916.620758px;}
.y98{bottom:916.743595px;}
.ycb{bottom:917.745176px;}
.y1a4{bottom:917.759576px;}
.yfe{bottom:917.781176px;}
.y140{bottom:923.023518px;}
.y249{bottom:924.339014px;}
.y1d8{bottom:924.342773px;}
.y64{bottom:934.635158px;}
.y97{bottom:934.736395px;}
.yca{bottom:935.737976px;}
.y1a3{bottom:935.752376px;}
.yfd{bottom:935.773976px;}
.y248{bottom:937.839014px;}
.y1d7{bottom:937.842773px;}
.yc{bottom:939.565528px;}
.y13f{bottom:941.251518px;}
.y33{bottom:942.500079px;}
.y247{bottom:951.339014px;}
.y1d6{bottom:951.342773px;}
.y63{bottom:952.627958px;}
.y96{bottom:952.729195px;}
.yc9{bottom:953.745176px;}
.yfc{bottom:953.766776px;}
.y246{bottom:964.839014px;}
.y1d5{bottom:964.842773px;}
.y13e{bottom:968.143518px;}
.y62{bottom:970.620758px;}
.y95{bottom:970.721995px;}
.yc8{bottom:971.737976px;}
.yfb{bottom:971.759576px;}
.y245{bottom:978.339014px;}
.y1d4{bottom:978.342773px;}
.yb{bottom:978.553528px;}
.y13d{bottom:981.643518px;}
.y32{bottom:985.925079px;}
.y61{bottom:988.620758px;}
.y94{bottom:988.714795px;}
.y125{bottom:989.052880px;}
.yfa{bottom:989.752376px;}
.yc7{bottom:989.759576px;}
.y244{bottom:991.839014px;}
.y1d3{bottom:991.842773px;}
.y13c{bottom:995.143518px;}
.y243{bottom:1005.339014px;}
.y1d2{bottom:1005.342773px;}
.y93{bottom:1006.707595px;}
.yf9{bottom:1007.745176px;}
.yc6{bottom:1007.752376px;}
.y31{bottom:1008.425079px;}
.y242{bottom:1018.839014px;}
.y1d1{bottom:1018.842773px;}
.y13b{bottom:1018.987518px;}
.y60{bottom:1024.627958px;}
.y92{bottom:1024.700395px;}
.yf8{bottom:1025.737976px;}
.yc5{bottom:1025.745176px;}
.y30{bottom:1030.925079px;}
.y241{bottom:1032.339014px;}
.y1d0{bottom:1032.342773px;}
.y3{bottom:1033.362579px;}
.y20e{bottom:1036.842773px;}
.y5f{bottom:1042.620758px;}
.y91{bottom:1042.693195px;}
.y13a{bottom:1043.300079px;}
.yc4{bottom:1043.737976px;}
.yf7{bottom:1043.738253px;}
.y240{bottom:1045.839014px;}
.y1cf{bottom:1045.842773px;}
.y2{bottom:1112.297079px;}
.y5c{bottom:1126.524628px;}
.y2e{bottom:1126.524719px;}
.y5e{bottom:1126.756989px;}
.y1{bottom:1126.925079px;}
.y5d{bottom:1127.300079px;}
.y2f{bottom:1127.304719px;}
.h21{height:27.814500px;}
.h15{height:27.988800px;}
.h6{height:37.086000px;}
.hd{height:39.735000px;}
.h1d{height:40.026000px;}
.h18{height:41.424000px;}
.h5{height:41.538000px;}
.h12{height:42.384000px;}
.h1c{height:42.672000px;}
.h23{height:42.840000px;}
.h1e{height:43.785000px;}
.h20{height:45.679552px;}
.h3{height:45.696000px;}
.he{height:45.744000px;}
.h22{height:45.814500px;}
.h16{height:46.704000px;}
.h2{height:47.232000px;}
.h11{height:47.472000px;}
.h14{height:47.682000px;}
.h1b{height:48.773459px;}
.h1a{height:48.796763px;}
.h19{height:48.863459px;}
.hc{height:52.980000px;}
.h13{height:53.406000px;}
.h10{height:53.709599px;}
.hf{height:55.860000px;}
.hb{height:58.380000px;}
.ha{height:61.120200px;}
.h8{height:67.194379px;}
.h9{height:67.212379px;}
.h4{height:86.692415px;}
.h1f{height:97.785000px;}
.h17{height:100.704000px;}
.h7{height:137.088000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:84.933002px;}
.x2{left:92.734348px;}
.x4{left:94.683002px;}
.x6{left:97.034552px;}
.x4f{left:107.539352px;}
.x25{left:116.182045px;}
.x4e{left:135.900602px;}
.x28{left:139.932300px;}
.x29{left:153.432300px;}
.x1f{left:159.817795px;}
.x2a{left:166.932300px;}
.x2b{left:193.257297px;}
.x2c{left:206.757297px;}
.x2d{left:220.257297px;}
.x2e{left:233.757297px;}
.x2f{left:247.257297px;}
.x9{left:252.682045px;}
.x30{left:260.757297px;}
.xa{left:269.179045px;}
.x3{left:270.817497px;}
.x20{left:275.454288px;}
.x31{left:278.341047px;}
.x32{left:291.841047px;}
.xe{left:293.494949px;}
.x33{left:309.424797px;}
.xf{left:317.338949px;}
.x34{left:322.924797px;}
.x10{left:330.838949px;}
.x35{left:336.424797px;}
.x36{left:354.008547px;}
.x11{left:357.730949px;}
.x37{left:371.592297px;}
.x12{left:375.886949px;}
.x38{left:389.176047px;}
.x21{left:391.086284px;}
.x13{left:394.030949px;}
.x39{left:402.676047px;}
.x14{left:412.176303px;}
.x3a{left:416.176047px;}
.x15{left:430.320303px;}
.x3b{left:447.259797px;}
.x16{left:448.464303px;}
.x7{left:457.081652px;}
.x3c{left:464.843547px;}
.x17{left:466.626468px;}
.x8{left:469.081794px;}
.x50{left:479.599327px;}
.x3d{left:482.427297px;}
.x18{left:484.770468px;}
.x3e{left:500.011047px;}
.x19{left:502.914468px;}
.x22{left:506.718280px;}
.x3f{left:513.511047px;}
.x1a{left:521.058468px;}
.x40{left:531.128535px;}
.x1b{left:539.310321px;}
.x41{left:548.712285px;}
.x1c{left:557.394321px;}
.x42{left:566.296035px;}
.x1d{left:575.538321px;}
.x43{left:583.879785px;}
.x1e{left:593.766321px;}
.x44{left:601.463535px;}
.xb{left:610.732040px;}
.x45{left:619.047285px;}
.x23{left:622.350276px;}
.xc{left:627.734116px;}
.x46{left:636.631035px;}
.xd{left:644.736008px;}
.x47{left:650.131035px;}
.x48{left:667.714785px;}
.x49{left:681.214785px;}
.x4a{left:698.798535px;}
.x4b{left:716.382285px;}
.x4c{left:729.882285px;}
.x24{left:732.126273px;}
.x4d{left:741.068390px;}
.x5{left:747.224258px;}
.x26{left:769.432068px;}
.x27{left:782.234070px;}
@media print{
.v8{vertical-align:-16.000000pt;}
.v4{vertical-align:-14.933431pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.322667pt;}
.v2{vertical-align:8.489258pt;}
.v7{vertical-align:15.880046pt;}
.v6{vertical-align:17.061919pt;}
.v3{vertical-align:23.466471pt;}
.v5{vertical-align:48.000000pt;}
.ls15{letter-spacing:-2.240000pt;}
.ls16{letter-spacing:-1.000000pt;}
.ls2{letter-spacing:-0.933333pt;}
.ls19{letter-spacing:-0.800000pt;}
.ls17{letter-spacing:-0.600000pt;}
.ls3{letter-spacing:-0.480000pt;}
.ls14{letter-spacing:-0.120000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.000001pt;}
.ls6{letter-spacing:0.000006pt;}
.ls5{letter-spacing:0.313600pt;}
.ls1b{letter-spacing:0.600000pt;}
.ls4{letter-spacing:0.731733pt;}
.ls18{letter-spacing:0.742187pt;}
.ls0{letter-spacing:4.853333pt;}
.ls9{letter-spacing:68.449568pt;}
.lsb{letter-spacing:72.360000pt;}
.ls11{letter-spacing:92.240000pt;}
.lsc{letter-spacing:150.520000pt;}
.ls10{letter-spacing:161.811112pt;}
.ls12{letter-spacing:175.204000pt;}
.lsa{letter-spacing:186.520000pt;}
.ls8{letter-spacing:298.239430pt;}
.lse{letter-spacing:318.120000pt;}
.lsf{letter-spacing:341.920000pt;}
.lsd{letter-spacing:346.200000pt;}
.ls13{letter-spacing:354.600000pt;}
.ls7{letter-spacing:574.967958pt;}
.ws72{word-spacing:-12.282667pt;}
.ws3{word-spacing:-11.096533pt;}
.ws4{word-spacing:-11.040000pt;}
.ws8{word-spacing:-10.560000pt;}
.wseb{word-spacing:-10.156800pt;}
.ws0{word-spacing:-9.045333pt;}
.ws2{word-spacing:-8.993600pt;}
.wsb6{word-spacing:-8.832000pt;}
.ws5{word-spacing:-8.760000pt;}
.wsea{word-spacing:-8.280000pt;}
.ws1{word-spacing:-7.242667pt;}
.wsf8{word-spacing:-7.080000pt;}
.wsc5{word-spacing:-6.520000pt;}
.wsf7{word-spacing:-6.132000pt;}
.ws4f{word-spacing:-5.749333pt;}
.wsb5{word-spacing:-5.540267pt;}
.wsbc{word-spacing:-4.010667pt;}
.wsd5{word-spacing:-3.760000pt;}
.wsbb{word-spacing:-3.498667pt;}
.wsd4{word-spacing:-1.680000pt;}
.wsd3{word-spacing:-1.530667pt;}
.wsab{word-spacing:-1.202133pt;}
.ws24{word-spacing:-0.888533pt;}
.wsdd{word-spacing:-0.731733pt;}
.ws7{word-spacing:-0.693333pt;}
.ws7a{word-spacing:-0.627200pt;}
.wsf9{word-spacing:-0.600000pt;}
.ws61{word-spacing:-0.418133pt;}
.wsd{word-spacing:-0.365867pt;}
.ws12{word-spacing:-0.156800pt;}
.ws8d{word-spacing:-0.104533pt;}
.wsfa{word-spacing:-0.080000pt;}
.ws6{word-spacing:0.000000pt;}
.ws6f{word-spacing:0.052267pt;}
.wsac{word-spacing:0.104533pt;}
.wsa4{word-spacing:0.209067pt;}
.ws46{word-spacing:0.261333pt;}
.wsaa{word-spacing:0.418133pt;}
.wsd7{word-spacing:0.600000pt;}
.ws82{word-spacing:0.627200pt;}
.ws7d{word-spacing:0.888533pt;}
.ws63{word-spacing:0.993067pt;}
.wsd6{word-spacing:1.000000pt;}
.ws27{word-spacing:1.097600pt;}
.ws51{word-spacing:1.202133pt;}
.ws14{word-spacing:1.306667pt;}
.ws3b{word-spacing:1.358933pt;}
.wsa3{word-spacing:1.411200pt;}
.ws13{word-spacing:1.463467pt;}
.wsf1{word-spacing:1.515733pt;}
.wsad{word-spacing:1.568000pt;}
.wsb{word-spacing:1.620267pt;}
.ws66{word-spacing:1.672533pt;}
.ws9c{word-spacing:1.724800pt;}
.ws1a{word-spacing:1.777067pt;}
.wse3{word-spacing:1.829333pt;}
.ws9f{word-spacing:1.881600pt;}
.ws90{word-spacing:1.986133pt;}
.ws5e{word-spacing:2.195200pt;}
.wsb3{word-spacing:2.247467pt;}
.ws25{word-spacing:2.299733pt;}
.ws91{word-spacing:2.352000pt;}
.ws5a{word-spacing:2.456533pt;}
.ws83{word-spacing:2.613333pt;}
.ws8a{word-spacing:2.665600pt;}
.ws4e{word-spacing:2.717867pt;}
.ws8b{word-spacing:2.770133pt;}
.wsa8{word-spacing:2.822400pt;}
.ws2d{word-spacing:2.874667pt;}
.wsdf{word-spacing:2.926933pt;}
.ws89{word-spacing:2.979200pt;}
.ws5c{word-spacing:3.031467pt;}
.ws65{word-spacing:3.188267pt;}
.wsda{word-spacing:3.345067pt;}
.wsef{word-spacing:3.397333pt;}
.ws8e{word-spacing:3.449600pt;}
.ws10{word-spacing:3.606400pt;}
.ws8c{word-spacing:3.658667pt;}
.ws58{word-spacing:3.710933pt;}
.ws97{word-spacing:3.763200pt;}
.ws1c{word-spacing:3.815467pt;}
.ws60{word-spacing:3.867733pt;}
.wsbd{word-spacing:3.920000pt;}
.wsae{word-spacing:3.972267pt;}
.wsf{word-spacing:4.024533pt;}
.ws76{word-spacing:4.129067pt;}
.ws2f{word-spacing:4.181333pt;}
.ws23{word-spacing:4.233600pt;}
.ws87{word-spacing:4.285867pt;}
.ws7f{word-spacing:4.338133pt;}
.ws22{word-spacing:4.390400pt;}
.ws81{word-spacing:4.442667pt;}
.ws15{word-spacing:4.494933pt;}
.ws92{word-spacing:4.547200pt;}
.ws1d{word-spacing:4.651733pt;}
.ws43{word-spacing:4.756267pt;}
.ws98{word-spacing:4.808533pt;}
.wse7{word-spacing:4.913067pt;}
.wse0{word-spacing:4.965333pt;}
.wsd8{word-spacing:5.017600pt;}
.ws96{word-spacing:5.069867pt;}
.ws59{word-spacing:5.226667pt;}
.ws93{word-spacing:5.278933pt;}
.ws21{word-spacing:5.331200pt;}
.ws4b{word-spacing:5.383467pt;}
.ws49{word-spacing:5.435733pt;}
.ws28{word-spacing:5.488000pt;}
.wsdc{word-spacing:5.592533pt;}
.wse2{word-spacing:5.644800pt;}
.ws20{word-spacing:5.697067pt;}
.ws8f{word-spacing:5.801600pt;}
.ws70{word-spacing:5.853867pt;}
.ws6b{word-spacing:5.906133pt;}
.ws1e{word-spacing:6.010667pt;}
.wse9{word-spacing:6.062933pt;}
.ws45{word-spacing:6.115200pt;}
.ws19{word-spacing:6.167467pt;}
.wsa9{word-spacing:6.219733pt;}
.ws99{word-spacing:6.272000pt;}
.ws71{word-spacing:6.324267pt;}
.ws5f{word-spacing:6.533333pt;}
.ws56{word-spacing:6.585600pt;}
.ws26{word-spacing:6.690133pt;}
.ws3a{word-spacing:6.794667pt;}
.wsf6{word-spacing:6.840000pt;}
.wsa{word-spacing:6.899200pt;}
.ws2b{word-spacing:6.951467pt;}
.ws9e{word-spacing:7.056000pt;}
.wsc{word-spacing:7.212800pt;}
.ws80{word-spacing:7.265067pt;}
.ws85{word-spacing:7.474133pt;}
.wsec{word-spacing:7.526400pt;}
.ws64{word-spacing:7.683200pt;}
.wsba{word-spacing:7.728000pt;}
.ws47{word-spacing:7.735467pt;}
.ws5b{word-spacing:7.787733pt;}
.wsf5{word-spacing:7.840000pt;}
.ws75{word-spacing:7.944533pt;}
.wsb4{word-spacing:7.996800pt;}
.ws35{word-spacing:8.049067pt;}
.wsb1{word-spacing:8.153600pt;}
.wsc1{word-spacing:8.205867pt;}
.ws11{word-spacing:8.258133pt;}
.ws2e{word-spacing:8.362667pt;}
.ws6a{word-spacing:8.414933pt;}
.wsa7{word-spacing:8.676267pt;}
.wsde{word-spacing:8.728533pt;}
.wsf0{word-spacing:8.885333pt;}
.ws6e{word-spacing:9.042133pt;}
.ws36{word-spacing:9.094400pt;}
.ws4a{word-spacing:9.146667pt;}
.ws42{word-spacing:9.198933pt;}
.ws67{word-spacing:9.251200pt;}
.ws38{word-spacing:9.303467pt;}
.wsdb{word-spacing:9.355733pt;}
.wsaf{word-spacing:9.512533pt;}
.wsf2{word-spacing:9.669333pt;}
.ws29{word-spacing:9.721600pt;}
.ws39{word-spacing:9.773867pt;}
.ws77{word-spacing:9.826133pt;}
.ws6c{word-spacing:9.878400pt;}
.wsb0{word-spacing:9.930667pt;}
.ws9b{word-spacing:9.982933pt;}
.ws1b{word-spacing:10.035200pt;}
.ws4d{word-spacing:10.139733pt;}
.ws3e{word-spacing:10.192000pt;}
.ws18{word-spacing:10.244267pt;}
.ws7e{word-spacing:10.296533pt;}
.ws4c{word-spacing:10.401067pt;}
.ws33{word-spacing:10.505600pt;}
.ws78{word-spacing:10.714667pt;}
.wse1{word-spacing:10.871467pt;}
.ws52{word-spacing:10.923733pt;}
.wsc0{word-spacing:11.028267pt;}
.ws54{word-spacing:11.132800pt;}
.ws53{word-spacing:11.394133pt;}
.ws5d{word-spacing:11.550933pt;}
.ws50{word-spacing:11.707733pt;}
.ws94{word-spacing:11.864533pt;}
.wse{word-spacing:12.125867pt;}
.ws40{word-spacing:12.178133pt;}
.ws3f{word-spacing:12.230400pt;}
.wsee{word-spacing:12.282667pt;}
.wsa0{word-spacing:12.334933pt;}
.ws88{word-spacing:12.387200pt;}
.ws16{word-spacing:12.544000pt;}
.wsa1{word-spacing:12.648533pt;}
.ws73{word-spacing:12.962133pt;}
.ws57{word-spacing:13.066667pt;}
.ws7b{word-spacing:13.118933pt;}
.wse8{word-spacing:13.223467pt;}
.ws31{word-spacing:13.328000pt;}
.ws37{word-spacing:13.641600pt;}
.ws68{word-spacing:13.693867pt;}
.wsa5{word-spacing:13.955200pt;}
.ws2c{word-spacing:14.007467pt;}
.wsd9{word-spacing:14.164267pt;}
.ws41{word-spacing:14.216533pt;}
.wsb2{word-spacing:14.634667pt;}
.ws3d{word-spacing:14.686933pt;}
.ws84{word-spacing:14.791467pt;}
.ws17{word-spacing:15.105067pt;}
.wsbe{word-spacing:15.418667pt;}
.ws9a{word-spacing:15.470933pt;}
.wse6{word-spacing:15.732267pt;}
.ws32{word-spacing:15.784533pt;}
.ws7c{word-spacing:15.993600pt;}
.ws44{word-spacing:16.045867pt;}
.ws3c{word-spacing:16.307200pt;}
.ws55{word-spacing:16.464000pt;}
.wsf4{word-spacing:16.882133pt;}
.ws34{word-spacing:16.986667pt;}
.wse4{word-spacing:17.038933pt;}
.ws69{word-spacing:17.143467pt;}
.wsf3{word-spacing:17.195733pt;}
.wsa2{word-spacing:17.248000pt;}
.wsa6{word-spacing:17.875200pt;}
.wsed{word-spacing:18.241067pt;}
.ws9{word-spacing:18.502400pt;}
.ws62{word-spacing:19.495467pt;}
.wse5{word-spacing:19.652267pt;}
.ws6d{word-spacing:19.861333pt;}
.ws86{word-spacing:20.227200pt;}
.ws79{word-spacing:20.436267pt;}
.ws1f{word-spacing:20.593067pt;}
.ws2a{word-spacing:22.265600pt;}
.ws48{word-spacing:22.317867pt;}
.ws9d{word-spacing:22.579200pt;}
.ws74{word-spacing:22.788267pt;}
.ws95{word-spacing:24.460800pt;}
.ws30{word-spacing:25.976533pt;}
.wsbf{word-spacing:35.280000pt;}
.wsc2{word-spacing:38.320000pt;}
.wscc{word-spacing:42.640000pt;}
.wsb8{word-spacing:59.093333pt;}
.wsc8{word-spacing:62.680000pt;}
.wsc7{word-spacing:65.403987pt;}
.wsb7{word-spacing:83.797333pt;}
.wsb9{word-spacing:84.480000pt;}
.wsd1{word-spacing:107.160000pt;}
.wsd0{word-spacing:108.080000pt;}
.wsc6{word-spacing:116.599995pt;}
.wsca{word-spacing:117.799995pt;}
.wsce{word-spacing:120.480000pt;}
.wsc4{word-spacing:121.680000pt;}
.wscf{word-spacing:170.240000pt;}
.wsc3{word-spacing:176.760000pt;}
.wscb{word-spacing:182.560000pt;}
.wsd2{word-spacing:200.840000pt;}
.wsc9{word-spacing:224.799992pt;}
.wscd{word-spacing:225.999992pt;}
._15{margin-left:-25.110400pt;}
._11{margin-left:-16.368000pt;}
._14{margin-left:-15.400000pt;}
._16{margin-left:-13.380267pt;}
._8{margin-left:-10.384000pt;}
._9{margin-left:-8.354133pt;}
._12{margin-left:-6.761067pt;}
._1{margin-left:-5.061333pt;}
._c{margin-left:-4.117867pt;}
._5{margin-left:-2.982933pt;}
._3{margin-left:-2.053333pt;}
._0{margin-left:-0.896000pt;}
._4{width:1.190933pt;}
._6{width:2.283733pt;}
._13{width:3.601173pt;}
._d{width:5.036267pt;}
._f{width:6.789440pt;}
._e{width:7.819093pt;}
._57{width:9.247811pt;}
._10{width:10.255467pt;}
._b{width:12.693326pt;}
._a{width:14.975988pt;}
._5b{width:17.597867pt;}
._5a{width:20.597867pt;}
._7{width:33.807984pt;}
._58{width:40.396001pt;}
._3f{width:41.440000pt;}
._3e{width:42.639995pt;}
._3d{width:45.320000pt;}
._3b{width:54.213326pt;}
._3c{width:59.613325pt;}
._56{width:65.918134pt;}
._1c{width:68.437333pt;}
._21{width:71.765333pt;}
._22{width:73.130667pt;}
._1d{width:81.749333pt;}
._2f{width:84.565333pt;}
._1e{width:87.168000pt;}
._2c{width:89.258667pt;}
._1f{width:90.794667pt;}
._26{width:92.416000pt;}
._24{width:93.354667pt;}
._33{width:102.570667pt;}
._59{width:103.720000pt;}
._23{width:104.789333pt;}
._25{width:110.864185pt;}
._27{width:113.109333pt;}
._29{width:115.413333pt;}
._54{width:118.320000pt;}
._34{width:119.552000pt;}
._38{width:123.690661pt;}
._30{width:125.387134pt;}
._47{width:129.240000pt;}
._39{width:144.512000pt;}
._44{width:147.936000pt;}
._40{width:161.799993pt;}
._18{width:165.056526pt;}
._1a{width:167.104533pt;}
._4d{width:174.293333pt;}
._48{width:176.320000pt;}
._4a{width:177.800000pt;}
._2e{width:180.357333pt;}
._53{width:190.192533pt;}
._42{width:191.320000pt;}
._52{width:192.752000pt;}
._19{width:197.056526pt;}
._51{width:204.077867pt;}
._43{width:208.400000pt;}
._4c{width:221.439993pt;}
._2d{width:231.210667pt;}
._41{width:232.476259pt;}
._46{width:233.559992pt;}
._31{width:236.714667pt;}
._45{width:244.599993pt;}
._2b{width:249.130667pt;}
._49{width:252.532861pt;}
._37{width:254.656522pt;}
._36{width:275.477852pt;}
._4b{width:291.680000pt;}
._55{width:305.560000pt;}
._2a{width:311.129067pt;}
._4e{width:312.880000pt;}
._32{width:315.098667pt;}
._4f{width:348.120000pt;}
._50{width:383.856000pt;}
._3a{width:501.680000pt;}
._28{width:526.250667pt;}
._1b{width:592.218667pt;}
._20{width:601.392000pt;}
._17{width:944.475178pt;}
._35{width:963.941324pt;}
._2{width:1349.422356pt;}
.fsc{font-size:26.133333pt;}
.fse{font-size:28.000000pt;}
.fsd{font-size:29.866667pt;}
.fs2{font-size:37.333333pt;}
.fs8{font-size:40.000000pt;}
.fs5{font-size:41.066666pt;}
.fs0{font-size:42.666667pt;}
.fsb{font-size:48.000000pt;}
.fsa{font-size:49.066666pt;}
.fs9{font-size:52.266667pt;}
.fs7{font-size:53.333333pt;}
.fs6{font-size:54.933333pt;}
.fs4{font-size:58.666667pt;}
.fs1{font-size:69.333333pt;}
.fs3{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:67.374933pt;}
.y9{bottom:78.042933pt;}
.yc3{bottom:83.290670pt;}
.y175{bottom:88.234959pt;}
.y173{bottom:88.244934pt;}
.y172{bottom:88.264919pt;}
.y161{bottom:88.273719pt;}
.y16f{bottom:88.274896pt;}
.y16c{bottom:88.284873pt;}
.y160{bottom:88.293704pt;}
.y15f{bottom:88.303693pt;}
.y23f{bottom:88.304647pt;}
.y16b{bottom:88.304858pt;}
.y15e{bottom:88.323678pt;}
.y16a{bottom:88.324843pt;}
.y15c{bottom:88.333655pt;}
.y169{bottom:88.344828pt;}
.y15b{bottom:88.353639pt;}
.y168{bottom:88.364813pt;}
.y12a{bottom:88.372625pt;}
.y15a{bottom:88.373624pt;}
.y158{bottom:88.383601pt;}
.y167{bottom:88.384798pt;}
.y150{bottom:88.393578pt;}
.y129{bottom:88.393977pt;}
.y12f{bottom:88.394018pt;}
.y166{bottom:88.404783pt;}
.y128{bottom:88.406092pt;}
.y11c{bottom:88.410665pt;}
.y127{bottom:88.427444pt;}
.y126{bottom:88.448795pt;}
.y8{bottom:88.710933pt;}
.y286{bottom:89.634679pt;}
.y19b{bottom:89.891062pt;}
.y188{bottom:89.897462pt;}
.y47{bottom:91.691199pt;}
.y5b{bottom:92.400257pt;}
.y1ce{bottom:93.097069pt;}
.y20d{bottom:93.637980pt;}
.yc0{bottom:94.799729pt;}
.y90{bottom:94.844529pt;}
.yf6{bottom:95.773469pt;}
.y136{bottom:96.281596pt;}
.yc2{bottom:96.624003pt;}
.y7{bottom:99.378933pt;}
.y23e{bottom:100.304647pt;}
.y285{bottom:101.634679pt;}
.y1cd{bottom:105.097069pt;}
.y20c{bottom:105.637980pt;}
.y187{bottom:105.891062pt;}
.y19a{bottom:105.897462pt;}
.y46{bottom:107.684799pt;}
.y5a{bottom:108.393857pt;}
.y6{bottom:110.046933pt;}
.ybf{bottom:110.793329pt;}
.y8f{bottom:110.838129pt;}
.yf5{bottom:111.767069pt;}
.y14a{bottom:111.853556pt;}
.y144{bottom:111.863597pt;}
.y135{bottom:112.287996pt;}
.y139{bottom:112.288263pt;}
.y23d{bottom:112.304647pt;}
.y284{bottom:113.634679pt;}
.y1cc{bottom:117.097069pt;}
.y20b{bottom:117.637980pt;}
.y5{bottom:120.714933pt;}
.y199{bottom:121.891062pt;}
.y186{bottom:121.929473pt;}
.y45{bottom:123.678399pt;}
.y23c{bottom:124.304647pt;}
.y59{bottom:124.387457pt;}
.y283{bottom:125.634679pt;}
.ybe{bottom:126.786929pt;}
.y8e{bottom:126.831729pt;}
.yf4{bottom:127.818269pt;}
.y11b{bottom:127.824669pt;}
.y134{bottom:128.281596pt;}
.y138{bottom:128.281863pt;}
.y1cb{bottom:129.097069pt;}
.y20a{bottom:129.637980pt;}
.y4{bottom:131.382933pt;}
.y23b{bottom:136.304647pt;}
.y282{bottom:137.634679pt;}
.y198{bottom:137.897462pt;}
.y185{bottom:137.923073pt;}
.y44{bottom:139.671999pt;}
.y58{bottom:140.381057pt;}
.y1ca{bottom:141.097069pt;}
.y209{bottom:141.637980pt;}
.ybd{bottom:142.780529pt;}
.y8d{bottom:142.825329pt;}
.yf3{bottom:143.811869pt;}
.y11a{bottom:143.818269pt;}
.y137{bottom:144.275463pt;}
.y133{bottom:144.281596pt;}
.y23a{bottom:148.304647pt;}
.y281{bottom:149.634679pt;}
.y1c9{bottom:153.097069pt;}
.y208{bottom:153.637980pt;}
.y197{bottom:153.891062pt;}
.y184{bottom:153.916673pt;}
.y43{bottom:155.665599pt;}
.y57{bottom:156.374657pt;}
.ybc{bottom:158.774129pt;}
.y8c{bottom:158.818929pt;}
.yf2{bottom:159.805469pt;}
.y119{bottom:159.811869pt;}
.y239{bottom:160.304647pt;}
.y280{bottom:161.634679pt;}
.y1c8{bottom:165.097069pt;}
.y207{bottom:165.637980pt;}
.y2d{bottom:165.654805pt;}
.y196{bottom:169.903873pt;}
.y183{bottom:169.910273pt;}
.y42{bottom:171.665609pt;}
.y238{bottom:172.304647pt;}
.y56{bottom:172.368257pt;}
.y27f{bottom:173.634679pt;}
.ybb{bottom:174.774129pt;}
.y8b{bottom:174.812529pt;}
.yf1{bottom:175.799069pt;}
.y118{bottom:175.805469pt;}
.y1c7{bottom:177.097069pt;}
.y206{bottom:177.637980pt;}
.y2c{bottom:177.654805pt;}
.y237{bottom:184.304647pt;}
.y27e{bottom:185.634679pt;}
.y195{bottom:185.897473pt;}
.y182{bottom:185.903873pt;}
.y41{bottom:187.672009pt;}
.y55{bottom:188.361857pt;}
.y1c6{bottom:189.097069pt;}
.y205{bottom:189.637980pt;}
.y2b{bottom:189.654805pt;}
.yba{bottom:190.774129pt;}
.y8a{bottom:190.806129pt;}
.yf0{bottom:191.792669pt;}
.y117{bottom:191.799069pt;}
.y236{bottom:196.304647pt;}
.y143{bottom:197.109192pt;}
.y27d{bottom:197.634679pt;}
.y2a{bottom:201.654805pt;}
.y194{bottom:201.891073pt;}
.y181{bottom:201.897473pt;}
.y40{bottom:203.665609pt;}
.y54{bottom:204.381057pt;}
.y89{bottom:206.799729pt;}
.yef{bottom:207.786269pt;}
.y116{bottom:207.792669pt;}
.y235{bottom:208.304647pt;}
.y27c{bottom:209.634679pt;}
.y142{bottom:210.442525pt;}
.y204{bottom:213.637980pt;}
.y180{bottom:217.891073pt;}
.y193{bottom:217.897473pt;}
.y3f{bottom:219.710409pt;}
.y234{bottom:220.304647pt;}
.y53{bottom:220.374657pt;}
.y27b{bottom:221.634679pt;}
.y88{bottom:222.793329pt;}
.yb9{bottom:222.799729pt;}
.y141{bottom:223.775859pt;}
.yee{bottom:223.779869pt;}
.y115{bottom:223.786269pt;}
.y203{bottom:225.637980pt;}
.y12e{bottom:227.476594pt;}
.y132{bottom:227.476613pt;}
.y12d{bottom:227.497923pt;}
.y131{bottom:227.497943pt;}
.y12c{bottom:227.519253pt;}
.y130{bottom:227.519314pt;}
.y12b{bottom:227.540624pt;}
.y1c5{bottom:227.767069pt;}
.y233{bottom:232.304647pt;}
.y27a{bottom:233.634679pt;}
.y192{bottom:233.891073pt;}
.y17f{bottom:233.897473pt;}
.y3e{bottom:235.704009pt;}
.y52{bottom:236.368257pt;}
.y202{bottom:237.637980pt;}
.y87{bottom:238.786929pt;}
.yb8{bottom:238.793329pt;}
.yed{bottom:239.773469pt;}
.y114{bottom:239.779869pt;}
.y29{bottom:240.527181pt;}
.y232{bottom:244.304647pt;}
.y279{bottom:245.634679pt;}
.y201{bottom:249.637980pt;}
.y17e{bottom:249.891073pt;}
.y191{bottom:249.916530pt;}
.y3d{bottom:251.697609pt;}
.y51{bottom:252.361857pt;}
.y86{bottom:254.780529pt;}
.yb7{bottom:254.786929pt;}
.yec{bottom:255.767069pt;}
.y113{bottom:255.773469pt;}
.y231{bottom:256.304647pt;}
.y278{bottom:257.634679pt;}
.y28{bottom:260.527181pt;}
.y190{bottom:265.910130pt;}
.y17d{bottom:265.935751pt;}
.y3c{bottom:267.691209pt;}
.y1c4{bottom:267.767069pt;}
.y230{bottom:268.304647pt;}
.y50{bottom:268.381057pt;}
.y277{bottom:269.634679pt;}
.y85{bottom:270.774129pt;}
.yb6{bottom:270.780529pt;}
.yeb{bottom:271.767069pt;}
.y200{bottom:273.637980pt;}
.y27{bottom:276.527181pt;}
.y22f{bottom:280.304647pt;}
.y276{bottom:281.634679pt;}
.y18f{bottom:281.903730pt;}
.y17c{bottom:281.929351pt;}
.y3b{bottom:283.684809pt;}
.y1c3{bottom:283.767069pt;}
.y4f{bottom:284.374657pt;}
.y1ff{bottom:285.637980pt;}
.y84{bottom:286.774129pt;}
.y112{bottom:287.824649pt;}
.y22e{bottom:292.304647pt;}
.y275{bottom:293.634679pt;}
.y26{bottom:296.527181pt;}
.y1fe{bottom:297.637980pt;}
.y18e{bottom:297.897330pt;}
.y17b{bottom:297.922951pt;}
.y3a{bottom:299.678409pt;}
.y4e{bottom:300.368257pt;}
.y83{bottom:302.774129pt;}
.yb5{bottom:302.818929pt;}
.yea{bottom:303.818249pt;}
.y22d{bottom:304.304647pt;}
.y274{bottom:305.634679pt;}
.y1fd{bottom:309.637980pt;}
.y25{bottom:312.527181pt;}
.y18d{bottom:313.890930pt;}
.y17a{bottom:313.916551pt;}
.y39{bottom:315.672009pt;}
.y1c2{bottom:315.767049pt;}
.y22c{bottom:316.304647pt;}
.y4d{bottom:316.361857pt;}
.y273{bottom:317.634679pt;}
.yb4{bottom:318.812529pt;}
.ye9{bottom:319.811849pt;}
.y1fc{bottom:321.637980pt;}
.y1c1{bottom:327.767049pt;}
.y22b{bottom:328.304647pt;}
.y24{bottom:328.527181pt;}
.y272{bottom:329.634679pt;}
.y18c{bottom:329.903751pt;}
.y179{bottom:329.910151pt;}
.y38{bottom:331.665609pt;}
.y4c{bottom:332.381057pt;}
.y1fb{bottom:333.637980pt;}
.yb3{bottom:334.806129pt;}
.y82{bottom:334.876529pt;}
.ye8{bottom:335.805449pt;}
.y151{bottom:335.843577pt;}
.y145{bottom:335.863595pt;}
.y1c0{bottom:339.767049pt;}
.y22a{bottom:340.304647pt;}
.y271{bottom:341.634679pt;}
.y11d{bottom:342.111328pt;}
.y11e{bottom:342.112793pt;}
.y1fa{bottom:345.637980pt;}
.y18b{bottom:345.897351pt;}
.y178{bottom:345.903751pt;}
.y37{bottom:347.678409pt;}
.y4b{bottom:348.374657pt;}
.y23{bottom:348.527181pt;}
.yb2{bottom:350.799729pt;}
.y81{bottom:350.870129pt;}
.y1bf{bottom:351.767049pt;}
.ye7{bottom:351.799049pt;}
.y229{bottom:352.304647pt;}
.y270{bottom:353.634679pt;}
.y1f9{bottom:357.637980pt;}
.y18a{bottom:361.890951pt;}
.y177{bottom:361.897351pt;}
.y36{bottom:363.672009pt;}
.y1be{bottom:363.767049pt;}
.y228{bottom:364.304647pt;}
.y4a{bottom:364.368257pt;}
.y22{bottom:364.527181pt;}
.y26f{bottom:365.634679pt;}
.yb1{bottom:366.793329pt;}
.y80{bottom:366.863729pt;}
.ye6{bottom:367.792649pt;}
.y1bd{bottom:375.767049pt;}
.y227{bottom:376.304647pt;}
.y26e{bottom:377.634679pt;}
.y176{bottom:377.890951pt;}
.y189{bottom:377.899862pt;}
.y35{bottom:379.665609pt;}
.y49{bottom:380.361857pt;}
.y21{bottom:380.527181pt;}
.y1f8{bottom:381.637980pt;}
.yb0{bottom:382.786929pt;}
.y7f{bottom:382.857329pt;}
.ye5{bottom:383.786249pt;}
.y1bc{bottom:387.767049pt;}
.y226{bottom:388.304647pt;}
.y26d{bottom:389.634679pt;}
.y34{bottom:395.665609pt;}
.y48{bottom:396.392799pt;}
.y20{bottom:396.527181pt;}
.yaf{bottom:398.780529pt;}
.y7e{bottom:398.850929pt;}
.y1bb{bottom:399.767049pt;}
.ye4{bottom:399.779849pt;}
.y225{bottom:400.304647pt;}
.y26c{bottom:401.634679pt;}
.y170{bottom:406.344892pt;}
.y152{bottom:406.463575pt;}
.y146{bottom:406.483593pt;}
.y1ba{bottom:411.767049pt;}
.y224{bottom:412.304647pt;}
.y26b{bottom:413.634679pt;}
.y1f7{bottom:413.638021pt;}
.yae{bottom:414.774129pt;}
.y7d{bottom:414.844529pt;}
.ye3{bottom:415.773449pt;}
.y1f{bottom:416.527181pt;}
.y11f{bottom:417.291458pt;}
.y1b9{bottom:423.767049pt;}
.y223{bottom:424.304647pt;}
.y26a{bottom:425.634679pt;}
.y1f6{bottom:425.638021pt;}
.y1a2{bottom:428.031047pt;}
.y28c{bottom:429.637980pt;}
.yad{bottom:430.774129pt;}
.y7c{bottom:430.838129pt;}
.ye2{bottom:431.767049pt;}
.y1e{bottom:432.527181pt;}
.y222{bottom:436.304647pt;}
.y269{bottom:437.634679pt;}
.y1f5{bottom:437.638021pt;}
.y1a1{bottom:441.364380pt;}
.y28b{bottom:441.637980pt;}
.y7b{bottom:446.831729pt;}
.y111{bottom:447.767049pt;}
.ye1{bottom:447.773449pt;}
.y221{bottom:448.304647pt;}
.y1d{bottom:448.527181pt;}
.y268{bottom:449.634679pt;}
.y1f4{bottom:449.638021pt;}
.y162{bottom:450.883716pt;}
.y171{bottom:450.884892pt;}
.y153{bottom:451.003575pt;}
.y14b{bottom:451.013552pt;}
.y28a{bottom:453.637980pt;}
.y1a0{bottom:454.697713pt;}
.y220{bottom:460.304647pt;}
.y267{bottom:461.634679pt;}
.y1f3{bottom:461.638021pt;}
.yac{bottom:462.774129pt;}
.y7a{bottom:462.825329pt;}
.ye0{bottom:463.767049pt;}
.y1b8{bottom:463.792649pt;}
.y110{bottom:463.831049pt;}
.y1c{bottom:464.527181pt;}
.y19f{bottom:468.031047pt;}
.y21f{bottom:472.304647pt;}
.y266{bottom:473.634679pt;}
.y1f2{bottom:473.638021pt;}
.yab{bottom:478.799729pt;}
.y79{bottom:478.818929pt;}
.ydf{bottom:479.767049pt;}
.y1b7{bottom:479.786249pt;}
.y10f{bottom:479.824649pt;}
.y1b{bottom:480.527181pt;}
.y19e{bottom:481.364380pt;}
.y21e{bottom:484.304647pt;}
.y265{bottom:485.634679pt;}
.y289{bottom:485.638021pt;}
.y120{bottom:492.470123pt;}
.y19d{bottom:494.697713pt;}
.yaa{bottom:494.793329pt;}
.y78{bottom:494.812529pt;}
.yde{bottom:495.773449pt;}
.y1b6{bottom:495.779849pt;}
.y10e{bottom:495.818249pt;}
.y21d{bottom:496.304647pt;}
.y1a{bottom:496.527181pt;}
.y264{bottom:497.634679pt;}
.y1f1{bottom:497.638021pt;}
.y163{bottom:507.193716pt;}
.y154{bottom:507.313575pt;}
.yc1{bottom:507.871338pt;}
.y19c{bottom:508.031047pt;}
.y21c{bottom:508.304647pt;}
.y263{bottom:509.634679pt;}
.y1f0{bottom:509.638021pt;}
.ya9{bottom:510.786929pt;}
.y77{bottom:510.806129pt;}
.ydd{bottom:511.767049pt;}
.y1b5{bottom:511.773449pt;}
.y10d{bottom:511.811849pt;}
.y19{bottom:516.527181pt;}
.y21b{bottom:520.304647pt;}
.y262{bottom:521.634679pt;}
.y1ef{bottom:521.638021pt;}
.ya8{bottom:526.780529pt;}
.y76{bottom:526.799729pt;}
.ydc{bottom:527.767049pt;}
.y10c{bottom:527.805449pt;}
.y21a{bottom:532.304647pt;}
.y18{bottom:532.527181pt;}
.y261{bottom:533.634679pt;}
.y1ee{bottom:533.638021pt;}
.ya7{bottom:542.774129pt;}
.y75{bottom:542.793329pt;}
.y1b4{bottom:543.779849pt;}
.y10b{bottom:543.799049pt;}
.y219{bottom:544.304647pt;}
.y260{bottom:545.634679pt;}
.y1ed{bottom:545.638021pt;}
.y17{bottom:548.527181pt;}
.y164{bottom:550.763714pt;}
.y16d{bottom:550.774868pt;}
.y155{bottom:550.883573pt;}
.y14c{bottom:550.893552pt;}
.y147{bottom:550.903592pt;}
.y218{bottom:556.304647pt;}
.y25f{bottom:557.634679pt;}
.y1ec{bottom:557.638021pt;}
.ya6{bottom:558.780529pt;}
.y74{bottom:558.786929pt;}
.y1b3{bottom:559.773449pt;}
.ydb{bottom:559.779849pt;}
.y10a{bottom:559.792649pt;}
.y217{bottom:568.304647pt;}
.y16{bottom:568.527181pt;}
.y25e{bottom:569.634679pt;}
.y1eb{bottom:569.638021pt;}
.ya5{bottom:574.774129pt;}
.y73{bottom:574.780529pt;}
.y121{bottom:575.648788pt;}
.y1b2{bottom:575.767049pt;}
.yda{bottom:575.773449pt;}
.y109{bottom:575.786249pt;}
.y216{bottom:580.304647pt;}
.y25d{bottom:581.634679pt;}
.y1ea{bottom:581.638021pt;}
.y15{bottom:584.527181pt;}
.y72{bottom:590.774129pt;}
.ya4{bottom:590.780529pt;}
.yd9{bottom:591.767049pt;}
.y1b1{bottom:591.773449pt;}
.y108{bottom:591.779849pt;}
.y215{bottom:592.304647pt;}
.y25c{bottom:593.634679pt;}
.y288{bottom:593.638021pt;}
.y14{bottom:600.527181pt;}
.y214{bottom:604.304647pt;}
.y25b{bottom:605.634679pt;}
.y1e9{bottom:605.638021pt;}
.ya3{bottom:606.774129pt;}
.y71{bottom:606.786929pt;}
.y1b0{bottom:607.767049pt;}
.y107{bottom:607.773449pt;}
.yd8{bottom:607.799090pt;}
.y213{bottom:616.304647pt;}
.y25a{bottom:617.634679pt;}
.y1e8{bottom:617.638021pt;}
.y13{bottom:620.527181pt;}
.ya2{bottom:622.774129pt;}
.y70{bottom:622.780529pt;}
.y106{bottom:623.767049pt;}
.yd7{bottom:623.792690pt;}
.y1af{bottom:623.799090pt;}
.y165{bottom:626.133714pt;}
.y16e{bottom:626.144868pt;}
.y156{bottom:626.253573pt;}
.y148{bottom:626.273592pt;}
.y212{bottom:628.304647pt;}
.y259{bottom:629.634679pt;}
.y1e7{bottom:629.638021pt;}
.y6f{bottom:638.774129pt;}
.yd6{bottom:639.786290pt;}
.y1ae{bottom:639.792690pt;}
.y211{bottom:640.304647pt;}
.y258{bottom:641.634679pt;}
.y1e6{bottom:641.638021pt;}
.y122{bottom:645.622121pt;}
.y210{bottom:652.304647pt;}
.y257{bottom:653.634679pt;}
.y1e5{bottom:653.638021pt;}
.y6e{bottom:654.774129pt;}
.yd5{bottom:655.779890pt;}
.y1ad{bottom:655.786290pt;}
.y20f{bottom:664.304647pt;}
.y256{bottom:665.634679pt;}
.y1e4{bottom:665.638021pt;}
.ya1{bottom:670.793370pt;}
.yd4{bottom:671.773490pt;}
.y1ac{bottom:671.779890pt;}
.y255{bottom:677.634679pt;}
.y1e3{bottom:677.638021pt;}
.y12{bottom:677.820544pt;}
.y157{bottom:682.933573pt;}
.y14d{bottom:682.943552pt;}
.y149{bottom:682.953592pt;}
.y6d{bottom:686.774170pt;}
.ya0{bottom:686.786970pt;}
.yd3{bottom:687.767090pt;}
.y1ab{bottom:687.773490pt;}
.y254{bottom:689.634679pt;}
.y287{bottom:689.638021pt;}
.y11{bottom:696.487211pt;}
.y253{bottom:701.634679pt;}
.y1e2{bottom:701.638021pt;}
.y6c{bottom:702.774170pt;}
.y9f{bottom:702.780570pt;}
.yd2{bottom:703.767090pt;}
.y105{bottom:703.773490pt;}
.y252{bottom:713.634679pt;}
.y1e1{bottom:713.638021pt;}
.y10{bottom:715.153878pt;}
.y9e{bottom:718.774170pt;}
.y6b{bottom:718.786970pt;}
.y104{bottom:719.767090pt;}
.yd1{bottom:719.811890pt;}
.y1aa{bottom:719.824690pt;}
.y123{bottom:720.800786pt;}
.y251{bottom:725.634679pt;}
.y1e0{bottom:725.638021pt;}
.yf{bottom:733.824544pt;}
.y6a{bottom:734.780570pt;}
.y9d{bottom:734.915196pt;}
.yd0{bottom:735.805490pt;}
.y1a9{bottom:735.818290pt;}
.y103{bottom:735.837490pt;}
.y250{bottom:737.634679pt;}
.y1df{bottom:737.638021pt;}
.y14e{bottom:743.003552pt;}
.y24f{bottom:749.634679pt;}
.y1de{bottom:749.638021pt;}
.y69{bottom:750.774170pt;}
.y9c{bottom:750.908796pt;}
.ycf{bottom:751.799090pt;}
.y1a8{bottom:751.811890pt;}
.y102{bottom:751.831090pt;}
.y24e{bottom:761.634679pt;}
.y1dd{bottom:761.638021pt;}
.ye{bottom:765.857358pt;}
.y68{bottom:766.793207pt;}
.y9b{bottom:766.902396pt;}
.yce{bottom:767.792690pt;}
.y1a7{bottom:767.805490pt;}
.y101{bottom:767.824690pt;}
.y24d{bottom:773.634679pt;}
.y1dc{bottom:773.638021pt;}
.y67{bottom:782.786807pt;}
.y9a{bottom:782.895996pt;}
.ycd{bottom:783.786290pt;}
.y1a6{bottom:783.799090pt;}
.y100{bottom:783.818290pt;}
.y24c{bottom:785.634679pt;}
.y1db{bottom:785.638021pt;}
.y124{bottom:795.979451pt;}
.y24b{bottom:797.634679pt;}
.y1da{bottom:797.638021pt;}
.y66{bottom:798.780407pt;}
.y99{bottom:798.889596pt;}
.ycc{bottom:799.779890pt;}
.y1a5{bottom:799.792690pt;}
.yff{bottom:799.811890pt;}
.yd{bottom:800.513358pt;}
.y174{bottom:807.174931pt;}
.y15d{bottom:807.263649pt;}
.y159{bottom:807.313596pt;}
.y14f{bottom:807.333550pt;}
.y24a{bottom:809.634679pt;}
.y1d9{bottom:809.638021pt;}
.y65{bottom:814.774007pt;}
.y98{bottom:814.883196pt;}
.ycb{bottom:815.773490pt;}
.y1a4{bottom:815.786290pt;}
.yfe{bottom:815.805490pt;}
.y140{bottom:820.465350pt;}
.y249{bottom:821.634679pt;}
.y1d8{bottom:821.638021pt;}
.y64{bottom:830.786807pt;}
.y97{bottom:830.876796pt;}
.yca{bottom:831.767090pt;}
.y1a3{bottom:831.779890pt;}
.yfd{bottom:831.799090pt;}
.y248{bottom:833.634679pt;}
.y1d7{bottom:833.638021pt;}
.yc{bottom:835.169358pt;}
.y13f{bottom:836.668016pt;}
.y33{bottom:837.777848pt;}
.y247{bottom:845.634679pt;}
.y1d6{bottom:845.638021pt;}
.y63{bottom:846.780407pt;}
.y96{bottom:846.870396pt;}
.yc9{bottom:847.773490pt;}
.yfc{bottom:847.792690pt;}
.y246{bottom:857.634679pt;}
.y1d5{bottom:857.638021pt;}
.y13e{bottom:860.572016pt;}
.y62{bottom:862.774007pt;}
.y95{bottom:862.863996pt;}
.yc8{bottom:863.767090pt;}
.yfb{bottom:863.786290pt;}
.y245{bottom:869.634679pt;}
.y1d4{bottom:869.638021pt;}
.yb{bottom:869.825358pt;}
.y13d{bottom:872.572016pt;}
.y32{bottom:876.377848pt;}
.y61{bottom:878.774007pt;}
.y94{bottom:878.857596pt;}
.y125{bottom:879.158116pt;}
.yfa{bottom:879.779890pt;}
.yc7{bottom:879.786290pt;}
.y244{bottom:881.634679pt;}
.y1d3{bottom:881.638021pt;}
.y13c{bottom:884.572016pt;}
.y243{bottom:893.634679pt;}
.y1d2{bottom:893.638021pt;}
.y93{bottom:894.851196pt;}
.yf9{bottom:895.773490pt;}
.yc6{bottom:895.779890pt;}
.y31{bottom:896.377848pt;}
.y242{bottom:905.634679pt;}
.y1d1{bottom:905.638021pt;}
.y13b{bottom:905.766683pt;}
.y60{bottom:910.780407pt;}
.y92{bottom:910.844796pt;}
.yf8{bottom:911.767090pt;}
.yc5{bottom:911.773490pt;}
.y30{bottom:916.377848pt;}
.y241{bottom:917.634679pt;}
.y1d0{bottom:917.638021pt;}
.y3{bottom:918.544515pt;}
.y20e{bottom:921.638021pt;}
.y5f{bottom:926.774007pt;}
.y91{bottom:926.838396pt;}
.y13a{bottom:927.377848pt;}
.yc4{bottom:927.767090pt;}
.yf7{bottom:927.767336pt;}
.y240{bottom:929.634679pt;}
.y1cf{bottom:929.638021pt;}
.y2{bottom:988.708515pt;}
.y5c{bottom:1001.355225pt;}
.y2e{bottom:1001.355306pt;}
.y5e{bottom:1001.561768pt;}
.y1{bottom:1001.711182pt;}
.y5d{bottom:1002.044515pt;}
.y2f{bottom:1002.048639pt;}
.h21{height:24.724000pt;}
.h15{height:24.878933pt;}
.h6{height:32.965333pt;}
.hd{height:35.320000pt;}
.h1d{height:35.578667pt;}
.h18{height:36.821333pt;}
.h5{height:36.922667pt;}
.h12{height:37.674667pt;}
.h1c{height:37.930667pt;}
.h23{height:38.080000pt;}
.h1e{height:38.920000pt;}
.h20{height:40.604046pt;}
.h3{height:40.618667pt;}
.he{height:40.661333pt;}
.h22{height:40.724000pt;}
.h16{height:41.514667pt;}
.h2{height:41.984000pt;}
.h11{height:42.197333pt;}
.h14{height:42.384000pt;}
.h1b{height:43.354186pt;}
.h1a{height:43.374901pt;}
.h19{height:43.434186pt;}
.hc{height:47.093333pt;}
.h13{height:47.472000pt;}
.h10{height:47.741866pt;}
.hf{height:49.653333pt;}
.hb{height:51.893333pt;}
.ha{height:54.329067pt;}
.h8{height:59.728337pt;}
.h9{height:59.744337pt;}
.h4{height:77.059924pt;}
.h1f{height:86.920000pt;}
.h17{height:89.514667pt;}
.h7{height:121.856000pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.496002pt;}
.x2{left:82.430532pt;}
.x4{left:84.162669pt;}
.x6{left:86.252935pt;}
.x4f{left:95.590535pt;}
.x25{left:103.272929pt;}
.x4e{left:120.800535pt;}
.x28{left:124.384267pt;}
.x29{left:136.384267pt;}
.x1f{left:142.060262pt;}
.x2a{left:148.384267pt;}
.x2b{left:171.784264pt;}
.x2c{left:183.784264pt;}
.x2d{left:195.784264pt;}
.x2e{left:207.784264pt;}
.x2f{left:219.784264pt;}
.x9{left:224.606262pt;}
.x30{left:231.784264pt;}
.xa{left:239.270262pt;}
.x3{left:240.726664pt;}
.x20{left:244.848256pt;}
.x31{left:247.414264pt;}
.x32{left:259.414264pt;}
.xe{left:260.884399pt;}
.x33{left:275.044264pt;}
.xf{left:282.079066pt;}
.x34{left:287.044264pt;}
.x10{left:294.079066pt;}
.x35{left:299.044264pt;}
.x36{left:314.674264pt;}
.x11{left:317.983066pt;}
.x37{left:330.304264pt;}
.x12{left:334.121733pt;}
.x38{left:345.934264pt;}
.x21{left:347.632252pt;}
.x13{left:350.249733pt;}
.x39{left:357.934264pt;}
.x14{left:366.378936pt;}
.x3a{left:369.934264pt;}
.x15{left:382.506936pt;}
.x3b{left:397.564264pt;}
.x16{left:398.634936pt;}
.x7{left:406.294802pt;}
.x3c{left:413.194264pt;}
.x17{left:414.779082pt;}
.x8{left:416.961594pt;}
.x50{left:426.310513pt;}
.x3d{left:428.824264pt;}
.x18{left:430.907082pt;}
.x3e{left:444.454264pt;}
.x19{left:447.035082pt;}
.x22{left:450.416249pt;}
.x3f{left:456.454264pt;}
.x1a{left:463.163082pt;}
.x40{left:472.114253pt;}
.x1b{left:479.386952pt;}
.x41{left:487.744253pt;}
.x1c{left:495.461619pt;}
.x42{left:503.374253pt;}
.x1d{left:511.589619pt;}
.x43{left:519.004253pt;}
.x1e{left:527.792285pt;}
.x44{left:534.634253pt;}
.xb{left:542.872925pt;}
.x45{left:550.264253pt;}
.x23{left:553.200245pt;}
.xc{left:557.985881pt;}
.x46{left:565.894253pt;}
.xd{left:573.098674pt;}
.x47{left:577.894253pt;}
.x48{left:593.524253pt;}
.x49{left:605.524253pt;}
.x4a{left:621.154253pt;}
.x4b{left:636.784253pt;}
.x4c{left:648.784253pt;}
.x24{left:650.778909pt;}
.x4d{left:658.727458pt;}
.x5{left:664.199341pt;}
.x26{left:683.939616pt;}
.x27{left:695.319173pt;}
}




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