
    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_5ee403c9ba04c78e95a2246e.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_ce61787a1e9de97b15b7f3e9.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_74cb0842703ab73d20670942.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_8a6af6401875a690feb75b03.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a723ed41513397ee4a07549d.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_e6e35d7df053f9316f43c7ce.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_e5cfc05f2f701501d9b7a546.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.690000;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_b549817830de2576b8a9bdfb.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.727000;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_0983b0a15a56d1316624b6e5.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_ed8d581568f6759458db19be.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.711000;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_9d4a5583a9e4f196e22f1ee0.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.588000;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_621efaf8d901953ce3ad7422.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.687500;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_1f2031a05b840a9e8be8b993.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_73ad67a5a4e4e4c9ad4f3fa3.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_fee13b4721e464e09de5b15b.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_636bd258a8941c9b6e01c4e2.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.000000;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:ff12;src:url('chunks/assets/font_44d54fb107ab688d780a8065.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.027000;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);}
.m3{transform:matrix(0.250000,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.250000,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.250000,0.000000,-0.051979,0.244537,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);}
.m4{transform:matrix(0.250004,0.000000,-0.051977,0.244537,0,0);-ms-transform:matrix(0.250004,0.000000,-0.051977,0.244537,0,0);-webkit-transform:matrix(0.250004,0.000000,-0.051977,0.244537,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);}
.v6{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.488000px;}
.v8{vertical-align:3.402000px;}
.v2{vertical-align:9.550415px;}
.v7{vertical-align:18.000000px;}
.v4{vertical-align:23.520447px;}
.v3{vertical-align:26.399780px;}
.v5{vertical-align:54.000000px;}
.ls5{letter-spacing:-2.688000px;}
.ls2{letter-spacing:-1.050000px;}
.ls3{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.529200px;}
.ls1{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.150130px;}
.lsa{letter-spacing:0.225194px;}
.ls4{letter-spacing:0.294000px;}
.ls7{letter-spacing:0.630000px;}
.lsb{letter-spacing:1.125972px;}
.ls8{letter-spacing:1.876621px;}
.ls0{letter-spacing:5.460000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd{word-spacing:-14.112000px;}
.wsc{word-spacing:-13.818000px;}
.wsad{word-spacing:-13.288800px;}
.ws5{word-spacing:-13.140000px;}
.ws3{word-spacing:-12.483600px;}
.ws4{word-spacing:-12.420000px;}
.ws105{word-spacing:-12.310630px;}
.ws6{word-spacing:-11.880000px;}
.ws104{word-spacing:-11.559982px;}
.ws5b{word-spacing:-11.426400px;}
.ws103{word-spacing:-10.659204px;}
.ws102{word-spacing:-10.584140px;}
.ws5c{word-spacing:-10.512000px;}
.wsf7{word-spacing:-10.485000px;}
.ws0{word-spacing:-10.176000px;}
.ws2{word-spacing:-10.117800px;}
.ws8a{word-spacing:-9.936000px;}
.ws7{word-spacing:-9.855000px;}
.wsf5{word-spacing:-9.315000px;}
.ws9{word-spacing:-8.148000px;}
.ws100{word-spacing:-7.965000px;}
.ws8b{word-spacing:-7.824000px;}
.wsf6{word-spacing:-6.898500px;}
.ws6d{word-spacing:-4.512000px;}
.ws106{word-spacing:-1.876621px;}
.ws6c{word-spacing:-1.680000px;}
.ws97{word-spacing:-0.999600px;}
.wsa1{word-spacing:-0.940800px;}
.wsce{word-spacing:-0.764400px;}
.ws77{word-spacing:-0.646800px;}
.ws101{word-spacing:-0.630000px;}
.ws2e{word-spacing:-0.588000px;}
.wse9{word-spacing:-0.529200px;}
.ws8f{word-spacing:-0.470400px;}
.wsef{word-spacing:-0.235200px;}
.ws5e{word-spacing:-0.176400px;}
.wsa{word-spacing:-0.120000px;}
.ws82{word-spacing:-0.117600px;}
.ws6b{word-spacing:-0.048000px;}
.wsb{word-spacing:-0.041160px;}
.ws8{word-spacing:0.000000px;}
.ws69{word-spacing:0.176400px;}
.ws8d{word-spacing:0.235200px;}
.ws16{word-spacing:0.294000px;}
.ws9e{word-spacing:0.411600px;}
.ws3e{word-spacing:0.470400px;}
.wsd8{word-spacing:0.529200px;}
.wse5{word-spacing:0.588000px;}
.ws78{word-spacing:0.646800px;}
.ws88{word-spacing:0.705600px;}
.wsf9{word-spacing:0.764400px;}
.wscf{word-spacing:0.823200px;}
.ws12{word-spacing:0.882000px;}
.ws62{word-spacing:0.940800px;}
.ws79{word-spacing:0.999600px;}
.wsf2{word-spacing:1.058400px;}
.ws4e{word-spacing:1.117200px;}
.ws20{word-spacing:1.176000px;}
.ws4b{word-spacing:1.234800px;}
.ws65{word-spacing:1.352400px;}
.wsea{word-spacing:1.411200px;}
.wsc0{word-spacing:1.470000px;}
.ws9f{word-spacing:1.528800px;}
.ws92{word-spacing:1.705200px;}
.ws3d{word-spacing:1.764000px;}
.ws28{word-spacing:1.822800px;}
.ws61{word-spacing:1.940400px;}
.ws98{word-spacing:1.999200px;}
.ws44{word-spacing:2.058000px;}
.wsb3{word-spacing:2.116800px;}
.wsb1{word-spacing:2.175600px;}
.wsf8{word-spacing:2.234400px;}
.ws10{word-spacing:2.352000px;}
.wsd7{word-spacing:2.410800px;}
.wsfa{word-spacing:2.469600px;}
.ws3a{word-spacing:2.528400px;}
.ws73{word-spacing:2.587200px;}
.ws89{word-spacing:2.646000px;}
.wsfe{word-spacing:2.704800px;}
.ws9c{word-spacing:2.763600px;}
.ws31{word-spacing:2.822400px;}
.wsa9{word-spacing:2.881200px;}
.ws57{word-spacing:2.940000px;}
.ws94{word-spacing:2.998800px;}
.ws68{word-spacing:3.057600px;}
.wsaf{word-spacing:3.116400px;}
.ws54{word-spacing:3.175200px;}
.wsf3{word-spacing:3.234000px;}
.wsac{word-spacing:3.292800px;}
.ws24{word-spacing:3.351600px;}
.wsd2{word-spacing:3.469200px;}
.wsb8{word-spacing:3.528000px;}
.ws1d{word-spacing:3.586800px;}
.ws4f{word-spacing:3.645600px;}
.ws60{word-spacing:3.704400px;}
.ws55{word-spacing:3.880800px;}
.ws27{word-spacing:3.939600px;}
.ws87{word-spacing:3.998400px;}
.wsdf{word-spacing:4.057200px;}
.wsa7{word-spacing:4.116000px;}
.ws81{word-spacing:4.174800px;}
.ws75{word-spacing:4.351200px;}
.ws1c{word-spacing:4.410000px;}
.ws1b{word-spacing:4.468800px;}
.ws7f{word-spacing:4.527600px;}
.ws46{word-spacing:4.586400px;}
.wsf1{word-spacing:4.645200px;}
.ws35{word-spacing:4.704000px;}
.wsf4{word-spacing:4.762800px;}
.wsfb{word-spacing:4.821600px;}
.wsc8{word-spacing:4.939200px;}
.wsf{word-spacing:4.998000px;}
.ws9a{word-spacing:5.056800px;}
.ws3b{word-spacing:5.174400px;}
.ws2a{word-spacing:5.233200px;}
.wsf0{word-spacing:5.350800px;}
.ws4a{word-spacing:5.409600px;}
.ws42{word-spacing:5.468400px;}
.ws48{word-spacing:5.527200px;}
.ws8c{word-spacing:5.586000px;}
.ws66{word-spacing:5.644800px;}
.ws99{word-spacing:5.703600px;}
.ws7d{word-spacing:5.762400px;}
.wse1{word-spacing:5.880000px;}
.ws1f{word-spacing:5.938800px;}
.ws64{word-spacing:5.997600px;}
.ws17{word-spacing:6.056400px;}
.ws5d{word-spacing:6.115200px;}
.ws7a{word-spacing:6.174000px;}
.wsc9{word-spacing:6.232800px;}
.ws30{word-spacing:6.350400px;}
.ws5f{word-spacing:6.409200px;}
.ws2d{word-spacing:6.526800px;}
.ws74{word-spacing:6.585600px;}
.ws70{word-spacing:6.644400px;}
.ws21{word-spacing:6.703200px;}
.wsbc{word-spacing:6.762000px;}
.ws1e{word-spacing:6.879600px;}
.ws85{word-spacing:6.938400px;}
.wsb2{word-spacing:6.997200px;}
.wsa8{word-spacing:7.056000px;}
.ws3c{word-spacing:7.114800px;}
.ws2f{word-spacing:7.173600px;}
.wsec{word-spacing:7.232400px;}
.ws9d{word-spacing:7.291200px;}
.ws22{word-spacing:7.350000px;}
.wsd0{word-spacing:7.467600px;}
.wse4{word-spacing:7.526400px;}
.wsa4{word-spacing:7.585200px;}
.ws26{word-spacing:7.644000px;}
.ws13{word-spacing:7.702800px;}
.ws43{word-spacing:7.761600px;}
.ws63{word-spacing:7.820400px;}
.wsb5{word-spacing:7.879200px;}
.ws96{word-spacing:7.938000px;}
.wsbf{word-spacing:8.055600px;}
.wsc6{word-spacing:8.114400px;}
.ws91{word-spacing:8.173200px;}
.ws41{word-spacing:8.232000px;}
.wsde{word-spacing:8.290800px;}
.wsda{word-spacing:8.349600px;}
.wsa3{word-spacing:8.467200px;}
.ws53{word-spacing:8.526000px;}
.wscb{word-spacing:8.584800px;}
.wsb0{word-spacing:8.643600px;}
.wsba{word-spacing:8.761200px;}
.ws14{word-spacing:8.878800px;}
.ws6a{word-spacing:8.937600px;}
.ws39{word-spacing:8.996400px;}
.ws1a{word-spacing:9.114000px;}
.ws38{word-spacing:9.290400px;}
.wsee{word-spacing:9.349200px;}
.ws51{word-spacing:9.408000px;}
.wsfd{word-spacing:9.466800px;}
.wsfc{word-spacing:9.525600px;}
.wse3{word-spacing:9.584400px;}
.ws47{word-spacing:9.643200px;}
.wsb6{word-spacing:9.702000px;}
.wsa0{word-spacing:9.760800px;}
.wse{word-spacing:9.819600px;}
.ws36{word-spacing:9.878400px;}
.wsdb{word-spacing:9.996000px;}
.wsed{word-spacing:10.054800px;}
.ws34{word-spacing:10.113600px;}
.wsab{word-spacing:10.172400px;}
.wse0{word-spacing:10.231200px;}
.wsbd{word-spacing:10.290000px;}
.ws2c{word-spacing:10.348800px;}
.ws80{word-spacing:10.407600px;}
.wscd{word-spacing:10.525200px;}
.ws50{word-spacing:10.584000px;}
.ws52{word-spacing:10.642800px;}
.ws3f{word-spacing:10.701600px;}
.wsd5{word-spacing:10.819200px;}
.ws8e{word-spacing:10.878000px;}
.ws49{word-spacing:10.995600px;}
.ws37{word-spacing:11.172000px;}
.wsa2{word-spacing:11.407200px;}
.ws84{word-spacing:11.466000px;}
.wsb9{word-spacing:11.524800px;}
.ws93{word-spacing:11.642400px;}
.wseb{word-spacing:11.701200px;}
.wsc7{word-spacing:11.818800px;}
.ws76{word-spacing:11.936400px;}
.wsd3{word-spacing:11.995200px;}
.ws33{word-spacing:12.054000px;}
.ws7c{word-spacing:12.112800px;}
.wsd1{word-spacing:12.171600px;}
.ws6f{word-spacing:12.348000px;}
.ws4c{word-spacing:12.465600px;}
.ws5a{word-spacing:12.642000px;}
.ws29{word-spacing:12.759600px;}
.ws2b{word-spacing:12.936000px;}
.ws86{word-spacing:12.994800px;}
.ws59{word-spacing:13.053600px;}
.wse8{word-spacing:13.171200px;}
.ws9b{word-spacing:13.288800px;}
.wsff{word-spacing:13.465200px;}
.ws7e{word-spacing:13.524000px;}
.wsdc{word-spacing:13.582800px;}
.ws40{word-spacing:13.700400px;}
.ws7b{word-spacing:13.759200px;}
.ws32{word-spacing:13.818000px;}
.wsa5{word-spacing:13.876800px;}
.wsd4{word-spacing:13.994400px;}
.ws58{word-spacing:14.170800px;}
.wse2{word-spacing:14.229600px;}
.wsd6{word-spacing:14.347200px;}
.wsbb{word-spacing:14.758800px;}
.wsc2{word-spacing:14.817600px;}
.ws25{word-spacing:14.876400px;}
.ws15{word-spacing:14.935200px;}
.wsb4{word-spacing:14.994000px;}
.ws4d{word-spacing:15.111600px;}
.ws67{word-spacing:15.170400px;}
.ws18{word-spacing:15.346800px;}
.wsae{word-spacing:15.464400px;}
.wsa6{word-spacing:15.582000px;}
.wsbe{word-spacing:15.817200px;}
.wsc5{word-spacing:15.934800px;}
.ws45{word-spacing:15.993600px;}
.ws72{word-spacing:16.052400px;}
.ws6e{word-spacing:16.111200px;}
.ws90{word-spacing:16.228800px;}
.ws71{word-spacing:16.287600px;}
.ws11{word-spacing:16.346400px;}
.ws23{word-spacing:16.699200px;}
.wse7{word-spacing:16.934400px;}
.wscc{word-spacing:16.993200px;}
.ws19{word-spacing:17.581200px;}
.ws83{word-spacing:18.110400px;}
.wsb7{word-spacing:18.169200px;}
.wsc1{word-spacing:18.816000px;}
.wsd9{word-spacing:19.345200px;}
.ws95{word-spacing:20.344800px;}
.ws56{word-spacing:20.521200px;}
.wsc3{word-spacing:21.050400px;}
.wsdd{word-spacing:23.167200px;}
.wsca{word-spacing:25.166400px;}
.wse6{word-spacing:25.342800px;}
.wsc4{word-spacing:26.166000px;}
.wsaa{word-spacing:31.340400px;}
.ws1{word-spacing:1763.800150px;}
._48{margin-left:-18.128389px;}
._47{margin-left:-14.470814px;}
._b{margin-left:-11.995200px;}
._44{margin-left:-7.684811px;}
._49{margin-left:-6.617943px;}
._9{margin-left:-4.821600px;}
._6{margin-left:-3.734343px;}
._1{margin-left:-2.574000px;}
._0{margin-left:-1.555200px;}
._2{width:1.158000px;}
._4{width:2.554743px;}
._3{width:3.968400px;}
._26{width:6.453600px;}
._45{width:7.779240px;}
._3c{width:8.968857px;}
._25{width:10.123267px;}
._a{width:11.374800px;}
._46{width:12.513360px;}
._7{width:14.520000px;}
._8{width:15.899989px;}
._5{width:17.395186px;}
._4b{width:20.211600px;}
._4c{width:23.361600px;}
._f{width:40.039168px;}
._4a{width:42.801600px;}
._37{width:62.063985px;}
._10{width:110.035200px;}
._16{width:118.815625px;}
._2f{width:147.492000px;}
._35{width:148.597257px;}
._3e{width:172.790400px;}
._2b{width:185.203185px;}
._1b{width:211.939200px;}
._21{width:213.283200px;}
._31{width:225.446378px;}
._3b{width:292.703980px;}
._43{width:308.880000px;}
._15{width:312.349200px;}
._39{width:314.351980px;}
._41{width:318.733200px;}
._23{width:335.855968px;}
._30{width:420.239980px;}
._2c{width:423.115177px;}
._3f{width:478.272000px;}
._42{width:497.587200px;}
._3d{width:523.459200px;}
._2a{width:582.671980px;}
._14{width:637.872000px;}
._40{width:644.707200px;}
._12{width:650.947200px;}
._1e{width:666.671968px;}
._3a{width:671.610000px;}
._2d{width:682.127980px;}
._20{width:685.007968px;}
._34{width:704.975980px;}
._17{width:717.881968px;}
._32{width:731.231980px;}
._e{width:741.743968px;}
._27{width:746.227180px;}
._38{width:749.424000px;}
._1a{width:758.831968px;}
._11{width:759.935968px;}
._22{width:766.127968px;}
._36{width:772.799980px;}
._c{width:832.531168px;}
._1f{width:857.472000px;}
._19{width:904.319968px;}
._18{width:911.855968px;}
._1c{width:931.679968px;}
._13{width:960.911968px;}
._33{width:967.871985px;}
._29{width:1008.403200px;}
._24{width:1011.888000px;}
._2e{width:1028.639985px;}
._28{width:1035.119985px;}
._1d{width:1045.296000px;}
._d{width:1049.088000px;}
.fc3{color:transparent;}
.fc2{color:rgb(78,78,77);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs12{font-size:14.074549px;}
.fse{font-size:31.500000px;}
.fsf{font-size:36.000000px;}
.fs11{font-size:37.532410px;}
.fs10{font-size:39.900000px;}
.fsb{font-size:41.160000px;}
.fs2{font-size:42.000000px;}
.fs9{font-size:45.000000px;}
.fs6{font-size:46.199999px;}
.fs0{font-size:48.000000px;}
.fsd{font-size:54.000000px;}
.fsc{font-size:55.199999px;}
.fsa{font-size:58.800000px;}
.fs8{font-size:60.000000px;}
.fs7{font-size:61.800000px;}
.fs5{font-size:66.000000px;}
.fs3{font-size:75.000000px;}
.fs1{font-size:78.000000px;}
.fs4{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.ye{bottom:30.664215px;}
.yc{bottom:79.008299px;}
.yb{bottom:91.009799px;}
.y109{bottom:99.461998px;}
.y10b{bottom:99.462013px;}
.y10d{bottom:99.462022px;}
.y10f{bottom:99.462037px;}
.y113{bottom:99.462050px;}
.y117{bottom:99.462065px;}
.y11a{bottom:99.462080px;}
.y11b{bottom:99.462094px;}
.y11e{bottom:99.462109px;}
.y121{bottom:99.462124px;}
.y124{bottom:99.462139px;}
.ya{bottom:103.011299px;}
.y107{bottom:104.127445px;}
.yf3{bottom:104.149045px;}
.y63{bottom:105.873753px;}
.y96{bottom:106.635295px;}
.y1b2{bottom:107.737953px;}
.y1dc{bottom:107.745153px;}
.y220{bottom:107.752353px;}
.y17d{bottom:110.141845px;}
.y15e{bottom:110.149045px;}
.y177{bottom:110.156245px;}
.y144{bottom:110.163457px;}
.ya5{bottom:114.267450px;}
.yb1{bottom:114.296239px;}
.y9{bottom:115.012799px;}
.y290{bottom:115.974000px;}
.y27a{bottom:117.342728px;}
.yf2{bottom:122.141845px;}
.y62{bottom:123.866553px;}
.y95{bottom:124.628095px;}
.y1db{bottom:125.737953px;}
.y21f{bottom:125.745153px;}
.y1b1{bottom:125.766753px;}
.y202{bottom:125.817153px;}
.y8{bottom:127.014299px;}
.y17c{bottom:128.134645px;}
.y15d{bottom:128.141845px;}
.y176{bottom:128.149045px;}
.y143{bottom:128.156257px;}
.y279{bottom:130.842728px;}
.ya4{bottom:132.260250px;}
.yb0{bottom:132.289039px;}
.y28e{bottom:133.764149px;}
.y7{bottom:139.015799px;}
.y28f{bottom:139.914000px;}
.yf1{bottom:140.134645px;}
.y61{bottom:141.859353px;}
.y94{bottom:142.620895px;}
.y1da{bottom:143.737953px;}
.y241{bottom:143.749180px;}
.y1b0{bottom:143.759553px;}
.y201{bottom:143.809953px;}
.y278{bottom:144.342728px;}
.y17b{bottom:146.127445px;}
.y15c{bottom:146.134645px;}
.y175{bottom:146.141845px;}
.y142{bottom:146.149057px;}
.ya3{bottom:150.267450px;}
.yaf{bottom:150.281839px;}
.y6{bottom:151.017299px;}
.y28b{bottom:151.773148px;}
.y240{bottom:157.249180px;}
.y277{bottom:157.842728px;}
.yf0{bottom:158.127445px;}
.y60{bottom:159.852153px;}
.y93{bottom:160.642495px;}
.y1af{bottom:161.752353px;}
.y200{bottom:161.802753px;}
.y5{bottom:163.018799px;}
.y15b{bottom:164.127445px;}
.y174{bottom:164.134645px;}
.y141{bottom:164.141857px;}
.y17a{bottom:164.164045px;}
.y28d{bottom:167.479649px;}
.y28c{bottom:168.058205px;}
.ya2{bottom:168.260250px;}
.yae{bottom:168.274639px;}
.y289{bottom:168.927749px;}
.y23f{bottom:170.749180px;}
.y276{bottom:171.342728px;}
.y106{bottom:176.156257px;}
.yef{bottom:176.235319px;}
.y5f{bottom:177.844953px;}
.y92{bottom:178.635295px;}
.y1ae{bottom:179.745153px;}
.y1ff{bottom:179.795553px;}
.y1d9{bottom:179.802753px;}
.y15a{bottom:182.127445px;}
.y140{bottom:182.134657px;}
.y179{bottom:182.156845px;}
.y292{bottom:182.881943px;}
.y23e{bottom:184.249180px;}
.y288{bottom:184.824749px;}
.y275{bottom:184.842728px;}
.y28a{bottom:185.888248px;}
.ya1{bottom:186.265039px;}
.yad{bottom:186.267439px;}
.y2bf{bottom:186.342750px;}
.y286{bottom:187.776139px;}
.y105{bottom:194.149057px;}
.yee{bottom:194.228119px;}
.y5e{bottom:195.837753px;}
.y91{bottom:196.628095px;}
.y1ad{bottom:197.737953px;}
.y23d{bottom:197.749180px;}
.y1fe{bottom:197.788353px;}
.y1d8{bottom:197.795553px;}
.y274{bottom:198.342728px;}
.y2be{bottom:199.842750px;}
.y13f{bottom:200.127457px;}
.y178{bottom:200.149645px;}
.y2c{bottom:201.361656px;}
.y285{bottom:202.539139px;}
.y287{bottom:204.131400px;}
.ya0{bottom:204.260239px;}
.y283{bottom:205.759204px;}
.y23c{bottom:211.249180px;}
.y273{bottom:211.842728px;}
.y104{bottom:212.141857px;}
.yed{bottom:212.220919px;}
.y2bd{bottom:213.342750px;}
.y5d{bottom:213.837753px;}
.y90{bottom:214.620895px;}
.y2b{bottom:214.861656px;}
.y21e{bottom:215.745153px;}
.y1ac{bottom:215.752353px;}
.y1fd{bottom:215.781153px;}
.y1d7{bottom:215.788353px;}
.y159{bottom:218.127457px;}
.y13e{bottom:218.156096px;}
.y282{bottom:220.060204px;}
.y284{bottom:221.440041px;}
.yac{bottom:222.281839px;}
.y280{bottom:223.765945px;}
.y23b{bottom:224.749180px;}
.y272{bottom:225.342728px;}
.y2a{bottom:228.361656px;}
.y103{bottom:230.134657px;}
.yec{bottom:230.213719px;}
.y5c{bottom:231.931216px;}
.y8f{bottom:232.620895px;}
.y21d{bottom:233.737953px;}
.y1ab{bottom:233.745153px;}
.y1fc{bottom:233.773953px;}
.y1d6{bottom:233.781153px;}
.y158{bottom:236.141857px;}
.y13d{bottom:236.148896px;}
.y27f{bottom:237.636445px;}
.y23a{bottom:238.249180px;}
.y281{bottom:238.801346px;}
.y271{bottom:238.842728px;}
.yab{bottom:240.274639px;}
.y9f{bottom:240.296239px;}
.y27c{bottom:241.768497px;}
.y27e{bottom:241.773445px;}
.y29{bottom:241.861656px;}
.y102{bottom:248.127457px;}
.yeb{bottom:248.206519px;}
.y2bc{bottom:249.342773px;}
.y5b{bottom:249.924016px;}
.y1aa{bottom:251.737953px;}
.y1fb{bottom:251.766753px;}
.y1d5{bottom:251.773953px;}
.y270{bottom:252.342728px;}
.y157{bottom:254.134657px;}
.y13c{bottom:254.141696px;}
.y27b{bottom:255.859497px;}
.y27d{bottom:256.813042px;}
.yaa{bottom:258.267439px;}
.y9e{bottom:258.289039px;}
.y2bb{bottom:262.842773px;}
.y26f{bottom:265.842728px;}
.y101{bottom:266.127457px;}
.yea{bottom:266.199319px;}
.y180{bottom:267.755241px;}
.y5a{bottom:267.916816px;}
.y8e{bottom:268.743295px;}
.y1a9{bottom:269.737953px;}
.y1fa{bottom:269.759553px;}
.y1d4{bottom:269.766753px;}
.y21c{bottom:269.781153px;}
.y156{bottom:272.127457px;}
.y13b{bottom:272.134496px;}
.ya9{bottom:276.260239px;}
.y9d{bottom:276.281839px;}
.y2ba{bottom:276.342773px;}
.y239{bottom:277.252930px;}
.y26e{bottom:279.342728px;}
.y291{bottom:282.343941px;}
.y17f{bottom:282.755241px;}
.y100{bottom:284.141696px;}
.ye9{bottom:284.192119px;}
.y59{bottom:285.909616px;}
.y8d{bottom:286.736095px;}
.y1f9{bottom:287.752353px;}
.y1d3{bottom:287.759553px;}
.y21b{bottom:287.773953px;}
.y2b9{bottom:289.842773px;}
.y13a{bottom:290.127296px;}
.y238{bottom:290.752930px;}
.y26d{bottom:292.842728px;}
.y9c{bottom:294.274639px;}
.ya8{bottom:294.283650px;}
.y17e{bottom:297.755241px;}
.yff{bottom:302.134496px;}
.ye8{bottom:302.184919px;}
.y2b8{bottom:303.342773px;}
.y58{bottom:303.902416px;}
.y8c{bottom:304.728895px;}
.y1a8{bottom:305.737953px;}
.y1f8{bottom:305.745153px;}
.y1d2{bottom:305.752353px;}
.y21a{bottom:305.766753px;}
.y26c{bottom:306.342728px;}
.y139{bottom:308.127296px;}
.y237{bottom:310.249180px;}
.y9b{bottom:312.267439px;}
.ya7{bottom:312.276450px;}
.y2b7{bottom:316.842773px;}
.y26b{bottom:319.842728px;}
.yfe{bottom:320.127296px;}
.ye7{bottom:320.177719px;}
.y57{bottom:321.895216px;}
.y8b{bottom:322.721695px;}
.y1f7{bottom:323.737953px;}
.y1d1{bottom:323.745153px;}
.y236{bottom:323.749180px;}
.y219{bottom:323.759553px;}
.y1a7{bottom:323.853130px;}
.y138{bottom:326.141696px;}
.y155{bottom:326.148896px;}
.y9a{bottom:330.260239px;}
.ya6{bottom:330.269250px;}
.y2b6{bottom:330.342773px;}
.y26a{bottom:333.342728px;}
.yfd{bottom:338.134496px;}
.ye6{bottom:338.170519px;}
.y10e{bottom:339.846017px;}
.y110{bottom:339.846032px;}
.y114{bottom:339.846045px;}
.y118{bottom:339.846060px;}
.y11c{bottom:339.846089px;}
.y11f{bottom:339.846104px;}
.y122{bottom:339.846119px;}
.y125{bottom:339.846134px;}
.y56{bottom:339.888016px;}
.y8a{bottom:340.714495px;}
.y1d0{bottom:341.737953px;}
.y218{bottom:341.752353px;}
.y1f6{bottom:341.809930px;}
.y1a6{bottom:341.845930px;}
.y235{bottom:343.245430px;}
.y2b5{bottom:343.842773px;}
.y137{bottom:344.134496px;}
.y154{bottom:344.141696px;}
.y269{bottom:346.842728px;}
.yfc{bottom:356.127296px;}
.ye5{bottom:356.163319px;}
.y234{bottom:356.745430px;}
.y2b4{bottom:357.342773px;}
.y55{bottom:357.880816px;}
.y89{bottom:358.707295px;}
.y1cf{bottom:359.737953px;}
.y217{bottom:359.745153px;}
.y1f5{bottom:359.802730px;}
.y1a5{bottom:359.838730px;}
.y268{bottom:360.342728px;}
.y136{bottom:362.127296px;}
.y153{bottom:362.134496px;}
.y2b3{bottom:370.842773px;}
.y267{bottom:373.842728px;}
.ye4{bottom:374.156119px;}
.yfb{bottom:374.202733px;}
.y54{bottom:375.873616px;}
.y233{bottom:376.241680px;}
.y88{bottom:376.700095px;}
.y216{bottom:377.737953px;}
.y1ce{bottom:377.752330px;}
.y1f4{bottom:377.795530px;}
.y1a4{bottom:377.831530px;}
.yb4{bottom:378.840021px;}
.y152{bottom:380.127296px;}
.y135{bottom:380.170519px;}
.y2b2{bottom:384.342773px;}
.y266{bottom:387.342728px;}
.yb3{bottom:391.587021px;}
.ye3{bottom:392.148919px;}
.yfa{bottom:392.195533px;}
.y53{bottom:393.866416px;}
.y87{bottom:394.692895px;}
.y232{bottom:395.737930px;}
.y1cd{bottom:395.745130px;}
.y215{bottom:395.773930px;}
.y1f3{bottom:395.788330px;}
.y1a3{bottom:395.824330px;}
.y2b1{bottom:397.842773px;}
.y151{bottom:398.134519px;}
.y134{bottom:398.163319px;}
.y265{bottom:400.842728px;}
.y28{bottom:405.215057px;}
.y231{bottom:409.237930px;}
.ye2{bottom:410.141719px;}
.yf9{bottom:410.188333px;}
.y2b0{bottom:411.342773px;}
.y52{bottom:411.859216px;}
.y86{bottom:412.685695px;}
.y1cc{bottom:413.737930px;}
.y214{bottom:413.766730px;}
.y1f2{bottom:413.781130px;}
.y1a2{bottom:413.817130px;}
.ydc{bottom:413.875335px;}
.y264{bottom:414.342728px;}
.y150{bottom:416.127319px;}
.y133{bottom:416.156119px;}
.y230{bottom:422.737930px;}
.y27{bottom:423.215057px;}
.y2af{bottom:424.842773px;}
.ydb{bottom:427.375335px;}
.y263{bottom:427.842728px;}
.ye1{bottom:428.134519px;}
.yf8{bottom:428.181133px;}
.y51{bottom:429.852016px;}
.y85{bottom:430.678495px;}
.y1cb{bottom:431.745130px;}
.y213{bottom:431.759530px;}
.y1f1{bottom:431.773930px;}
.y1a1{bottom:431.809930px;}
.y14f{bottom:434.127319px;}
.y132{bottom:434.148919px;}
.y2ae{bottom:438.342773px;}
.yda{bottom:445.603335px;}
.y26{bottom:445.715057px;}
.ye0{bottom:446.127319px;}
.yf7{bottom:446.173933px;}
.y50{bottom:447.844816px;}
.y84{bottom:448.671295px;}
.y1ca{bottom:449.737930px;}
.y212{bottom:449.752330px;}
.y1f0{bottom:449.766730px;}
.y1a0{bottom:449.802730px;}
.y2ad{bottom:451.842773px;}
.y131{bottom:452.141719px;}
.y22f{bottom:454.237930px;}
.yd9{bottom:459.103335px;}
.y25{bottom:463.715057px;}
.ydf{bottom:464.141719px;}
.yf6{bottom:464.166733px;}
.y2ac{bottom:465.342773px;}
.y4f{bottom:465.837616px;}
.y83{bottom:466.664095px;}
.y22e{bottom:467.737930px;}
.y1c9{bottom:467.745130px;}
.y1ef{bottom:467.759530px;}
.y19f{bottom:467.795530px;}
.y130{bottom:470.134519px;}
.y14e{bottom:470.170519px;}
.yd8{bottom:472.603335px;}
.y2ab{bottom:478.842773px;}
.yde{bottom:482.134519px;}
.yf5{bottom:482.159533px;}
.y4e{bottom:483.859216px;}
.y82{bottom:484.656895px;}
.y1c8{bottom:485.737930px;}
.y1ee{bottom:485.752330px;}
.y19e{bottom:485.788330px;}
.y24{bottom:486.215057px;}
.y12f{bottom:488.127319px;}
.y14d{bottom:488.163319px;}
.yd7{bottom:490.759335px;}
.y2aa{bottom:492.342773px;}
.y262{bottom:496.842728px;}
.ydd{bottom:500.127319px;}
.yf4{bottom:500.152333px;}
.y4d{bottom:501.852016px;}
.y81{bottom:502.649695px;}
.y1c7{bottom:503.737930px;}
.y1ed{bottom:503.745130px;}
.y19d{bottom:503.781130px;}
.y211{bottom:503.788330px;}
.y23{bottom:504.215057px;}
.yd6{bottom:504.259335px;}
.y2a9{bottom:505.842773px;}
.y12e{bottom:506.148919px;}
.y14c{bottom:506.156119px;}
.y2a8{bottom:519.342773px;}
.y4c{bottom:519.844816px;}
.y80{bottom:520.642495px;}
.y1ec{bottom:521.737930px;}
.y19c{bottom:521.773930px;}
.y210{bottom:521.781130px;}
.y22{bottom:522.215057px;}
.yd5{bottom:522.415335px;}
.y261{bottom:523.842728px;}
.y12d{bottom:524.141719px;}
.y14b{bottom:524.148919px;}
.y2a7{bottom:532.842773px;}
.yd4{bottom:535.915335px;}
.y260{bottom:537.342728px;}
.y4b{bottom:537.837616px;}
.y7f{bottom:538.635295px;}
.y1c6{bottom:539.737930px;}
.y19b{bottom:539.766730px;}
.y20f{bottom:539.773930px;}
.y21{bottom:540.215057px;}
.y12c{bottom:542.134519px;}
.y14a{bottom:542.141719px;}
.y2a6{bottom:546.342773px;}
.y25f{bottom:550.842728px;}
.yd3{bottom:554.071335px;}
.y4a{bottom:555.852016px;}
.y7e{bottom:556.628095px;}
.y1eb{bottom:557.745130px;}
.y19a{bottom:557.759530px;}
.y1c5{bottom:557.766730px;}
.y2a5{bottom:559.842773px;}
.y12b{bottom:560.127319px;}
.y149{bottom:560.134519px;}
.y20{bottom:562.715057px;}
.yd2{bottom:567.571335px;}
.y108{bottom:568.115250px;}
.y25e{bottom:568.842728px;}
.y2a4{bottom:573.342773px;}
.y49{bottom:573.844816px;}
.y7d{bottom:574.620895px;}
.y1ea{bottom:575.737930px;}
.y199{bottom:575.752330px;}
.y1c4{bottom:575.759530px;}
.y12a{bottom:578.127319px;}
.y1f{bottom:580.715057px;}
.y25d{bottom:582.342728px;}
.yd1{bottom:585.715335px;}
.y2a3{bottom:586.842773px;}
.y48{bottom:591.837616px;}
.y7c{bottom:592.628095px;}
.y1e9{bottom:593.737930px;}
.y198{bottom:593.745130px;}
.y1c3{bottom:593.752330px;}
.y25c{bottom:595.842728px;}
.y148{bottom:596.134519px;}
.y1e{bottom:598.715057px;}
.y2a2{bottom:600.342773px;}
.yd0{bottom:603.871335px;}
.y25b{bottom:604.842728px;}
.y47{bottom:609.866416px;}
.y7b{bottom:610.620895px;}
.y197{bottom:611.737930px;}
.y1c2{bottom:611.745130px;}
.y2a1{bottom:613.842773px;}
.y147{bottom:614.127319px;}
.y129{bottom:614.141719px;}
.y1d{bottom:616.715057px;}
.ycf{bottom:617.371335px;}
.y2a0{bottom:627.342773px;}
.y46{bottom:627.859216px;}
.y7a{bottom:628.692941px;}
.y196{bottom:629.737930px;}
.y22d{bottom:629.745130px;}
.yce{bottom:630.871335px;}
.y25a{bottom:631.842728px;}
.y128{bottom:632.134519px;}
.y146{bottom:632.175157px;}
.y1c{bottom:634.715057px;}
.y29f{bottom:640.842773px;}
.ycd{bottom:644.371335px;}
.y259{bottom:645.342728px;}
.y45{bottom:645.852016px;}
.y79{bottom:646.685741px;}
.y20e{bottom:647.737930px;}
.y1c1{bottom:647.745130px;}
.y1e8{bottom:647.781130px;}
.y127{bottom:650.127319px;}
.y145{bottom:650.167957px;}
.y29e{bottom:654.342773px;}
.y1b{bottom:657.215057px;}
.y10c{bottom:658.686004px;}
.y111{bottom:658.686026px;}
.y115{bottom:658.686041px;}
.y119{bottom:658.686056px;}
.y11d{bottom:658.686086px;}
.y120{bottom:658.686101px;}
.y123{bottom:658.686115px;}
.y126{bottom:658.686130px;}
.ycc{bottom:662.527335px;}
.y44{bottom:663.844816px;}
.y78{bottom:664.678541px;}
.y1c0{bottom:665.737930px;}
.y20d{bottom:665.745130px;}
.y195{bottom:665.766730px;}
.y1e7{bottom:665.773930px;}
.y29d{bottom:667.842773px;}
.y258{bottom:672.342728px;}
.y1a{bottom:675.215057px;}
.ycb{bottom:676.027335px;}
.y29c{bottom:681.342773px;}
.y43{bottom:681.837616px;}
.y77{bottom:682.671341px;}
.y20c{bottom:683.737930px;}
.y194{bottom:683.759530px;}
.y1e6{bottom:683.766730px;}
.y257{bottom:685.842728px;}
.yca{bottom:689.527335px;}
.y19{bottom:693.215057px;}
.y29b{bottom:694.842773px;}
.y42{bottom:699.859216px;}
.y76{bottom:700.664141px;}
.y20b{bottom:701.745130px;}
.y193{bottom:701.752330px;}
.y1e5{bottom:701.759530px;}
.yc9{bottom:703.027335px;}
.y29a{bottom:708.342773px;}
.y18{bottom:711.215057px;}
.y256{bottom:712.842728px;}
.y173{bottom:716.923518px;}
.y41{bottom:717.852016px;}
.y75{bottom:718.656941px;}
.y20a{bottom:719.737930px;}
.y192{bottom:719.745130px;}
.y1e4{bottom:719.752330px;}
.yc8{bottom:721.171335px;}
.y299{bottom:721.842773px;}
.y255{bottom:726.342728px;}
.y172{bottom:730.423518px;}
.y17{bottom:733.715057px;}
.yc7{bottom:734.671335px;}
.y298{bottom:735.342773px;}
.y40{bottom:735.844816px;}
.y74{bottom:736.649741px;}
.y191{bottom:737.737930px;}
.y1e3{bottom:737.745130px;}
.y209{bottom:737.759576px;}
.y171{bottom:743.923518px;}
.yc6{bottom:748.171335px;}
.y297{bottom:748.842773px;}
.y16{bottom:751.715057px;}
.y254{bottom:753.342728px;}
.y3f{bottom:753.837616px;}
.y73{bottom:754.642541px;}
.y1e2{bottom:755.737930px;}
.y190{bottom:755.745176px;}
.y208{bottom:755.752376px;}
.y1bf{bottom:755.766776px;}
.yc5{bottom:761.671335px;}
.y170{bottom:762.151518px;}
.y296{bottom:762.342773px;}
.y15{bottom:769.715057px;}
.y3e{bottom:771.916908px;}
.y72{bottom:772.635341px;}
.y18f{bottom:773.737976px;}
.y207{bottom:773.745176px;}
.y22c{bottom:773.752376px;}
.y1be{bottom:773.759576px;}
.y16f{bottom:775.651518px;}
.y295{bottom:775.842773px;}
.yc4{bottom:779.827335px;}
.y16e{bottom:789.151518px;}
.y253{bottom:789.342773px;}
.y3d{bottom:789.909708px;}
.y71{bottom:790.628141px;}
.y18e{bottom:791.737976px;}
.y22b{bottom:791.745176px;}
.y1bd{bottom:791.752376px;}
.y14{bottom:792.215057px;}
.yc3{bottom:793.327335px;}
.y252{bottom:802.842773px;}
.yc2{bottom:806.827335px;}
.y16d{bottom:807.295518px;}
.y3c{bottom:807.902508px;}
.y70{bottom:808.620941px;}
.y18d{bottom:809.737976px;}
.y1bc{bottom:809.745176px;}
.y251{bottom:816.342773px;}
.yc1{bottom:820.327335px;}
.y16c{bottom:820.795518px;}
.y3b{bottom:825.895308px;}
.y6f{bottom:826.620941px;}
.y1bb{bottom:827.737976px;}
.y22a{bottom:827.766776px;}
.y250{bottom:829.842773px;}
.y16b{bottom:834.295518px;}
.yc0{bottom:838.471335px;}
.y24f{bottom:843.342773px;}
.y3a{bottom:843.888108px;}
.y6e{bottom:844.656941px;}
.y1ba{bottom:845.737976px;}
.y1e1{bottom:845.745176px;}
.y18c{bottom:845.752376px;}
.y229{bottom:845.759576px;}
.y206{bottom:845.766776px;}
.y16a{bottom:847.795518px;}
.ybf{bottom:856.627335px;}
.y24e{bottom:856.842773px;}
.y39{bottom:861.880908px;}
.y6d{bottom:862.649741px;}
.y1e0{bottom:863.737976px;}
.y18b{bottom:863.745176px;}
.y228{bottom:863.752376px;}
.y205{bottom:863.759576px;}
.y13{bottom:864.552612px;}
.y169{bottom:865.939518px;}
.ybe{bottom:870.127335px;}
.y24d{bottom:870.342773px;}
.y168{bottom:879.439518px;}
.y38{bottom:879.873708px;}
.y6c{bottom:880.642541px;}
.y18a{bottom:881.737976px;}
.y227{bottom:881.745176px;}
.y204{bottom:881.752376px;}
.y24c{bottom:883.842773px;}
.ybd{bottom:888.283335px;}
.y167{bottom:892.939518px;}
.y294{bottom:897.342773px;}
.y37{bottom:897.866508px;}
.y6b{bottom:898.635341px;}
.y1b9{bottom:899.737976px;}
.y203{bottom:899.745176px;}
.y189{bottom:899.752376px;}
.y12{bottom:900.577528px;}
.ybc{bottom:901.783335px;}
.y166{bottom:906.439518px;}
.y24b{bottom:910.842773px;}
.y36{bottom:915.859308px;}
.y6a{bottom:916.628141px;}
.y1b8{bottom:917.737976px;}
.y188{bottom:917.745176px;}
.y1df{bottom:917.759576px;}
.y226{bottom:917.788376px;}
.ybb{bottom:919.939335px;}
.y165{bottom:919.939518px;}
.y24a{bottom:924.342773px;}
.yba{bottom:933.439335px;}
.y35{bottom:933.852108px;}
.y69{bottom:934.620941px;}
.y187{bottom:935.737976px;}
.y1de{bottom:935.752376px;}
.y225{bottom:935.781176px;}
.y293{bottom:937.842773px;}
.y164{bottom:938.095518px;}
.y11{bottom:939.565528px;}
.y249{bottom:951.342773px;}
.yb9{bottom:951.595335px;}
.y163{bottom:951.595518px;}
.y34{bottom:951.844908px;}
.y68{bottom:952.620941px;}
.y1b7{bottom:953.737976px;}
.y186{bottom:953.745176px;}
.y224{bottom:953.773976px;}
.y248{bottom:964.842773px;}
.yb8{bottom:965.095335px;}
.y162{bottom:965.095518px;}
.y33{bottom:969.837708px;}
.y185{bottom:971.737976px;}
.y223{bottom:971.766776px;}
.y10a{bottom:976.337989px;}
.y112{bottom:976.338026px;}
.y116{bottom:976.338041px;}
.y247{bottom:978.342773px;}
.y10{bottom:978.553528px;}
.yb7{bottom:978.595335px;}
.y161{bottom:978.595518px;}
.y32{bottom:987.844908px;}
.y67{bottom:988.628141px;}
.y184{bottom:989.737976px;}
.y1b6{bottom:989.752653px;}
.y222{bottom:989.759576px;}
.y246{bottom:991.842773px;}
.y245{bottom:1005.342773px;}
.yb6{bottom:1005.487335px;}
.y160{bottom:1005.487518px;}
.y31{bottom:1005.837708px;}
.y66{bottom:1006.620941px;}
.y183{bottom:1007.745176px;}
.y1b5{bottom:1007.745453px;}
.y221{bottom:1007.752376px;}
.y244{bottom:1018.842773px;}
.yb5{bottom:1018.987335px;}
.y15f{bottom:1018.987518px;}
.y30{bottom:1023.837708px;}
.y65{bottom:1024.667871px;}
.y182{bottom:1025.737976px;}
.y1b4{bottom:1025.738253px;}
.y1dd{bottom:1025.745176px;}
.y243{bottom:1032.342773px;}
.y4{bottom:1033.362579px;}
.y2f{bottom:1041.837708px;}
.y64{bottom:1042.660671px;}
.yb2{bottom:1043.300079px;}
.y1b3{bottom:1043.731053px;}
.y181{bottom:1043.737976px;}
.y242{bottom:1045.842773px;}
.yd{bottom:1091.692474px;}
.y3{bottom:1097.297079px;}
.yf{bottom:1099.102386px;}
.y2{bottom:1112.297079px;}
.y97{bottom:1126.524628px;}
.y2d{bottom:1126.524719px;}
.y99{bottom:1126.756989px;}
.y1{bottom:1126.925079px;}
.y98{bottom:1127.300079px;}
.y2e{bottom:1127.304719px;}
.h25{height:10.640359px;}
.h1f{height:27.540000px;}
.h1a{height:27.814500px;}
.h23{height:28.374502px;}
.h1d{height:29.988000px;}
.h21{height:30.324000px;}
.h22{height:30.523500px;}
.h1e{height:32.130000px;}
.h20{height:35.532000px;}
.h7{height:37.086000px;}
.hf{height:39.735000px;}
.h14{height:39.984000px;}
.h13{height:40.026000px;}
.h6{height:41.538000px;}
.h16{height:42.384000px;}
.h1c{height:42.840000px;}
.h19{height:43.785000px;}
.h4{height:45.696000px;}
.h3{height:45.744000px;}
.h1b{height:45.814500px;}
.h8{height:46.357500px;}
.h15{height:46.704000px;}
.h2{height:47.232000px;}
.h18{height:47.472000px;}
.he{height:52.980000px;}
.h12{height:53.406000px;}
.h11{height:53.709599px;}
.h10{height:55.860000px;}
.hd{height:58.380000px;}
.hc{height:61.120200px;}
.hb{height:67.194379px;}
.h9{height:71.400000px;}
.h5{height:86.692415px;}
.h17{height:96.384000px;}
.ha{height:137.088000px;}
.h24{height:204.143990px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w2{width:237.205490px;}
.w3{width:344.762993px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x37{left:12.796051px;}
.x5{left:58.837646px;}
.x1{left:84.933002px;}
.x2{left:92.734348px;}
.x7{left:94.683002px;}
.x9{left:97.034552px;}
.x3c{left:107.539352px;}
.x39{left:139.550400px;}
.x3b{left:140.704651px;}
.xe{left:197.831703px;}
.xf{left:222.144447px;}
.x10{left:235.644447px;}
.x11{left:249.144447px;}
.x3{left:270.817497px;}
.x12{left:276.036447px;}
.x13{left:289.536447px;}
.x14{left:307.680447px;}
.x15{left:321.180447px;}
.x2e{left:326.503352px;}
.xd{left:338.887344px;}
.x16{left:352.836447px;}
.x17{left:366.336447px;}
.x18{left:384.480447px;}
.x19{left:397.980447px;}
.x1a{left:411.480447px;}
.x1b{left:424.980447px;}
.x1c{left:443.124447px;}
.xa{left:457.081652px;}
.x36{left:463.109985px;}
.xb{left:469.081794px;}
.x1d{left:470.124447px;}
.x35{left:475.906036px;}
.x34{left:476.938660px;}
.x30{left:479.586594px;}
.x31{left:483.529633px;}
.x1e{left:488.280447px;}
.x32{left:490.386133px;}
.x33{left:493.103989px;}
.x1f{left:506.424447px;}
.x20{left:519.924447px;}
.x21{left:533.424447px;}
.x22{left:546.924447px;}
.x23{left:565.068447px;}
.x2d{left:567.367352px;}
.x4{left:570.669022px;}
.x24{left:578.568447px;}
.x25{left:592.068447px;}
.x38{left:602.660385px;}
.x3a{left:603.814636px;}
.x26{left:605.568447px;}
.x27{left:623.712447px;}
.x28{left:637.212447px;}
.x6{left:649.117218px;}
.x29{left:650.712447px;}
.xc{left:661.219344px;}
.x2a{left:668.940447px;}
.x2b{left:682.440447px;}
.x2c{left:695.940447px;}
.x2f{left:741.068390px;}
.x8{left:747.224258px;}
@media print{
.v6{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.322667pt;}
.v8{vertical-align:3.024000pt;}
.v2{vertical-align:8.489258pt;}
.v7{vertical-align:16.000000pt;}
.v4{vertical-align:20.907064pt;}
.v3{vertical-align:23.466471pt;}
.v5{vertical-align:48.000000pt;}
.ls5{letter-spacing:-2.389333pt;}
.ls2{letter-spacing:-0.933333pt;}
.ls3{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.470400pt;}
.ls1{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.133449pt;}
.lsa{letter-spacing:0.200173pt;}
.ls4{letter-spacing:0.261333pt;}
.ls7{letter-spacing:0.560000pt;}
.lsb{letter-spacing:1.000864pt;}
.ls8{letter-spacing:1.668107pt;}
.ls0{letter-spacing:4.853333pt;}
.wsd{word-spacing:-12.544000pt;}
.wsc{word-spacing:-12.282667pt;}
.wsad{word-spacing:-11.812267pt;}
.ws5{word-spacing:-11.680000pt;}
.ws3{word-spacing:-11.096533pt;}
.ws4{word-spacing:-11.040000pt;}
.ws105{word-spacing:-10.942783pt;}
.ws6{word-spacing:-10.560000pt;}
.ws104{word-spacing:-10.275540pt;}
.ws5b{word-spacing:-10.156800pt;}
.ws103{word-spacing:-9.474848pt;}
.ws102{word-spacing:-9.408124pt;}
.ws5c{word-spacing:-9.344000pt;}
.wsf7{word-spacing:-9.320000pt;}
.ws0{word-spacing:-9.045333pt;}
.ws2{word-spacing:-8.993600pt;}
.ws8a{word-spacing:-8.832000pt;}
.ws7{word-spacing:-8.760000pt;}
.wsf5{word-spacing:-8.280000pt;}
.ws9{word-spacing:-7.242667pt;}
.ws100{word-spacing:-7.080000pt;}
.ws8b{word-spacing:-6.954667pt;}
.wsf6{word-spacing:-6.132000pt;}
.ws6d{word-spacing:-4.010667pt;}
.ws106{word-spacing:-1.668107pt;}
.ws6c{word-spacing:-1.493333pt;}
.ws97{word-spacing:-0.888533pt;}
.wsa1{word-spacing:-0.836267pt;}
.wsce{word-spacing:-0.679467pt;}
.ws77{word-spacing:-0.574933pt;}
.ws101{word-spacing:-0.560000pt;}
.ws2e{word-spacing:-0.522667pt;}
.wse9{word-spacing:-0.470400pt;}
.ws8f{word-spacing:-0.418133pt;}
.wsef{word-spacing:-0.209067pt;}
.ws5e{word-spacing:-0.156800pt;}
.wsa{word-spacing:-0.106667pt;}
.ws82{word-spacing:-0.104533pt;}
.ws6b{word-spacing:-0.042667pt;}
.wsb{word-spacing:-0.036587pt;}
.ws8{word-spacing:0.000000pt;}
.ws69{word-spacing:0.156800pt;}
.ws8d{word-spacing:0.209067pt;}
.ws16{word-spacing:0.261333pt;}
.ws9e{word-spacing:0.365867pt;}
.ws3e{word-spacing:0.418133pt;}
.wsd8{word-spacing:0.470400pt;}
.wse5{word-spacing:0.522667pt;}
.ws78{word-spacing:0.574933pt;}
.ws88{word-spacing:0.627200pt;}
.wsf9{word-spacing:0.679467pt;}
.wscf{word-spacing:0.731733pt;}
.ws12{word-spacing:0.784000pt;}
.ws62{word-spacing:0.836267pt;}
.ws79{word-spacing:0.888533pt;}
.wsf2{word-spacing:0.940800pt;}
.ws4e{word-spacing:0.993067pt;}
.ws20{word-spacing:1.045333pt;}
.ws4b{word-spacing:1.097600pt;}
.ws65{word-spacing:1.202133pt;}
.wsea{word-spacing:1.254400pt;}
.wsc0{word-spacing:1.306667pt;}
.ws9f{word-spacing:1.358933pt;}
.ws92{word-spacing:1.515733pt;}
.ws3d{word-spacing:1.568000pt;}
.ws28{word-spacing:1.620267pt;}
.ws61{word-spacing:1.724800pt;}
.ws98{word-spacing:1.777067pt;}
.ws44{word-spacing:1.829333pt;}
.wsb3{word-spacing:1.881600pt;}
.wsb1{word-spacing:1.933867pt;}
.wsf8{word-spacing:1.986133pt;}
.ws10{word-spacing:2.090667pt;}
.wsd7{word-spacing:2.142933pt;}
.wsfa{word-spacing:2.195200pt;}
.ws3a{word-spacing:2.247467pt;}
.ws73{word-spacing:2.299733pt;}
.ws89{word-spacing:2.352000pt;}
.wsfe{word-spacing:2.404267pt;}
.ws9c{word-spacing:2.456533pt;}
.ws31{word-spacing:2.508800pt;}
.wsa9{word-spacing:2.561067pt;}
.ws57{word-spacing:2.613333pt;}
.ws94{word-spacing:2.665600pt;}
.ws68{word-spacing:2.717867pt;}
.wsaf{word-spacing:2.770133pt;}
.ws54{word-spacing:2.822400pt;}
.wsf3{word-spacing:2.874667pt;}
.wsac{word-spacing:2.926933pt;}
.ws24{word-spacing:2.979200pt;}
.wsd2{word-spacing:3.083733pt;}
.wsb8{word-spacing:3.136000pt;}
.ws1d{word-spacing:3.188267pt;}
.ws4f{word-spacing:3.240533pt;}
.ws60{word-spacing:3.292800pt;}
.ws55{word-spacing:3.449600pt;}
.ws27{word-spacing:3.501867pt;}
.ws87{word-spacing:3.554133pt;}
.wsdf{word-spacing:3.606400pt;}
.wsa7{word-spacing:3.658667pt;}
.ws81{word-spacing:3.710933pt;}
.ws75{word-spacing:3.867733pt;}
.ws1c{word-spacing:3.920000pt;}
.ws1b{word-spacing:3.972267pt;}
.ws7f{word-spacing:4.024533pt;}
.ws46{word-spacing:4.076800pt;}
.wsf1{word-spacing:4.129067pt;}
.ws35{word-spacing:4.181333pt;}
.wsf4{word-spacing:4.233600pt;}
.wsfb{word-spacing:4.285867pt;}
.wsc8{word-spacing:4.390400pt;}
.wsf{word-spacing:4.442667pt;}
.ws9a{word-spacing:4.494933pt;}
.ws3b{word-spacing:4.599467pt;}
.ws2a{word-spacing:4.651733pt;}
.wsf0{word-spacing:4.756267pt;}
.ws4a{word-spacing:4.808533pt;}
.ws42{word-spacing:4.860800pt;}
.ws48{word-spacing:4.913067pt;}
.ws8c{word-spacing:4.965333pt;}
.ws66{word-spacing:5.017600pt;}
.ws99{word-spacing:5.069867pt;}
.ws7d{word-spacing:5.122133pt;}
.wse1{word-spacing:5.226667pt;}
.ws1f{word-spacing:5.278933pt;}
.ws64{word-spacing:5.331200pt;}
.ws17{word-spacing:5.383467pt;}
.ws5d{word-spacing:5.435733pt;}
.ws7a{word-spacing:5.488000pt;}
.wsc9{word-spacing:5.540267pt;}
.ws30{word-spacing:5.644800pt;}
.ws5f{word-spacing:5.697067pt;}
.ws2d{word-spacing:5.801600pt;}
.ws74{word-spacing:5.853867pt;}
.ws70{word-spacing:5.906133pt;}
.ws21{word-spacing:5.958400pt;}
.wsbc{word-spacing:6.010667pt;}
.ws1e{word-spacing:6.115200pt;}
.ws85{word-spacing:6.167467pt;}
.wsb2{word-spacing:6.219733pt;}
.wsa8{word-spacing:6.272000pt;}
.ws3c{word-spacing:6.324267pt;}
.ws2f{word-spacing:6.376533pt;}
.wsec{word-spacing:6.428800pt;}
.ws9d{word-spacing:6.481067pt;}
.ws22{word-spacing:6.533333pt;}
.wsd0{word-spacing:6.637867pt;}
.wse4{word-spacing:6.690133pt;}
.wsa4{word-spacing:6.742400pt;}
.ws26{word-spacing:6.794667pt;}
.ws13{word-spacing:6.846933pt;}
.ws43{word-spacing:6.899200pt;}
.ws63{word-spacing:6.951467pt;}
.wsb5{word-spacing:7.003733pt;}
.ws96{word-spacing:7.056000pt;}
.wsbf{word-spacing:7.160533pt;}
.wsc6{word-spacing:7.212800pt;}
.ws91{word-spacing:7.265067pt;}
.ws41{word-spacing:7.317333pt;}
.wsde{word-spacing:7.369600pt;}
.wsda{word-spacing:7.421867pt;}
.wsa3{word-spacing:7.526400pt;}
.ws53{word-spacing:7.578667pt;}
.wscb{word-spacing:7.630933pt;}
.wsb0{word-spacing:7.683200pt;}
.wsba{word-spacing:7.787733pt;}
.ws14{word-spacing:7.892267pt;}
.ws6a{word-spacing:7.944533pt;}
.ws39{word-spacing:7.996800pt;}
.ws1a{word-spacing:8.101333pt;}
.ws38{word-spacing:8.258133pt;}
.wsee{word-spacing:8.310400pt;}
.ws51{word-spacing:8.362667pt;}
.wsfd{word-spacing:8.414933pt;}
.wsfc{word-spacing:8.467200pt;}
.wse3{word-spacing:8.519467pt;}
.ws47{word-spacing:8.571733pt;}
.wsb6{word-spacing:8.624000pt;}
.wsa0{word-spacing:8.676267pt;}
.wse{word-spacing:8.728533pt;}
.ws36{word-spacing:8.780800pt;}
.wsdb{word-spacing:8.885333pt;}
.wsed{word-spacing:8.937600pt;}
.ws34{word-spacing:8.989867pt;}
.wsab{word-spacing:9.042133pt;}
.wse0{word-spacing:9.094400pt;}
.wsbd{word-spacing:9.146667pt;}
.ws2c{word-spacing:9.198933pt;}
.ws80{word-spacing:9.251200pt;}
.wscd{word-spacing:9.355733pt;}
.ws50{word-spacing:9.408000pt;}
.ws52{word-spacing:9.460267pt;}
.ws3f{word-spacing:9.512533pt;}
.wsd5{word-spacing:9.617067pt;}
.ws8e{word-spacing:9.669333pt;}
.ws49{word-spacing:9.773867pt;}
.ws37{word-spacing:9.930667pt;}
.wsa2{word-spacing:10.139733pt;}
.ws84{word-spacing:10.192000pt;}
.wsb9{word-spacing:10.244267pt;}
.ws93{word-spacing:10.348800pt;}
.wseb{word-spacing:10.401067pt;}
.wsc7{word-spacing:10.505600pt;}
.ws76{word-spacing:10.610133pt;}
.wsd3{word-spacing:10.662400pt;}
.ws33{word-spacing:10.714667pt;}
.ws7c{word-spacing:10.766933pt;}
.wsd1{word-spacing:10.819200pt;}
.ws6f{word-spacing:10.976000pt;}
.ws4c{word-spacing:11.080533pt;}
.ws5a{word-spacing:11.237333pt;}
.ws29{word-spacing:11.341867pt;}
.ws2b{word-spacing:11.498667pt;}
.ws86{word-spacing:11.550933pt;}
.ws59{word-spacing:11.603200pt;}
.wse8{word-spacing:11.707733pt;}
.ws9b{word-spacing:11.812267pt;}
.wsff{word-spacing:11.969067pt;}
.ws7e{word-spacing:12.021333pt;}
.wsdc{word-spacing:12.073600pt;}
.ws40{word-spacing:12.178133pt;}
.ws7b{word-spacing:12.230400pt;}
.ws32{word-spacing:12.282667pt;}
.wsa5{word-spacing:12.334933pt;}
.wsd4{word-spacing:12.439467pt;}
.ws58{word-spacing:12.596267pt;}
.wse2{word-spacing:12.648533pt;}
.wsd6{word-spacing:12.753067pt;}
.wsbb{word-spacing:13.118933pt;}
.wsc2{word-spacing:13.171200pt;}
.ws25{word-spacing:13.223467pt;}
.ws15{word-spacing:13.275733pt;}
.wsb4{word-spacing:13.328000pt;}
.ws4d{word-spacing:13.432533pt;}
.ws67{word-spacing:13.484800pt;}
.ws18{word-spacing:13.641600pt;}
.wsae{word-spacing:13.746133pt;}
.wsa6{word-spacing:13.850667pt;}
.wsbe{word-spacing:14.059733pt;}
.wsc5{word-spacing:14.164267pt;}
.ws45{word-spacing:14.216533pt;}
.ws72{word-spacing:14.268800pt;}
.ws6e{word-spacing:14.321067pt;}
.ws90{word-spacing:14.425600pt;}
.ws71{word-spacing:14.477867pt;}
.ws11{word-spacing:14.530133pt;}
.ws23{word-spacing:14.843733pt;}
.wse7{word-spacing:15.052800pt;}
.wscc{word-spacing:15.105067pt;}
.ws19{word-spacing:15.627733pt;}
.ws83{word-spacing:16.098133pt;}
.wsb7{word-spacing:16.150400pt;}
.wsc1{word-spacing:16.725333pt;}
.wsd9{word-spacing:17.195733pt;}
.ws95{word-spacing:18.084267pt;}
.ws56{word-spacing:18.241067pt;}
.wsc3{word-spacing:18.711467pt;}
.wsdd{word-spacing:20.593067pt;}
.wsca{word-spacing:22.370133pt;}
.wse6{word-spacing:22.526933pt;}
.wsc4{word-spacing:23.258667pt;}
.wsaa{word-spacing:27.858133pt;}
.ws1{word-spacing:1567.822356pt;}
._48{margin-left:-16.114124pt;}
._47{margin-left:-12.862946pt;}
._b{margin-left:-10.662400pt;}
._44{margin-left:-6.830943pt;}
._49{margin-left:-5.882616pt;}
._9{margin-left:-4.285867pt;}
._6{margin-left:-3.319416pt;}
._1{margin-left:-2.288000pt;}
._0{margin-left:-1.382400pt;}
._2{width:1.029333pt;}
._4{width:2.270883pt;}
._3{width:3.527467pt;}
._26{width:5.736533pt;}
._45{width:6.914880pt;}
._3c{width:7.972317pt;}
._25{width:8.998460pt;}
._a{width:10.110933pt;}
._46{width:11.122986pt;}
._7{width:12.906667pt;}
._8{width:14.133324pt;}
._5{width:15.462388pt;}
._4b{width:17.965867pt;}
._4c{width:20.765867pt;}
._f{width:35.590371pt;}
._4a{width:38.045867pt;}
._37{width:55.167987pt;}
._10{width:97.809067pt;}
._16{width:105.613889pt;}
._2f{width:131.104000pt;}
._35{width:132.086451pt;}
._3e{width:153.591467pt;}
._2b{width:164.625054pt;}
._1b{width:188.390400pt;}
._21{width:189.585067pt;}
._31{width:200.396781pt;}
._3b{width:260.181316pt;}
._43{width:274.560000pt;}
._15{width:277.643733pt;}
._39{width:279.423982pt;}
._41{width:283.318400pt;}
._23{width:298.538638pt;}
._30{width:373.546649pt;}
._2c{width:376.102380pt;}
._3f{width:425.130667pt;}
._42{width:442.299733pt;}
._3d{width:465.297067pt;}
._2a{width:517.930649pt;}
._14{width:566.997333pt;}
._40{width:573.073067pt;}
._12{width:578.619733pt;}
._1e{width:592.597305pt;}
._3a{width:596.986667pt;}
._2d{width:606.335982pt;}
._20{width:608.895971pt;}
._34{width:626.645316pt;}
._17{width:638.117305pt;}
._32{width:649.983982pt;}
._e{width:659.327971pt;}
._27{width:663.313049pt;}
._38{width:666.154667pt;}
._1a{width:674.517305pt;}
._11{width:675.498638pt;}
._22{width:681.002638pt;}
._36{width:686.933316pt;}
._c{width:740.027705pt;}
._1f{width:762.197333pt;}
._19{width:803.839971pt;}
._18{width:810.538638pt;}
._1c{width:828.159971pt;}
._13{width:854.143971pt;}
._33{width:860.330654pt;}
._29{width:896.358400pt;}
._24{width:899.456000pt;}
._2e{width:914.346654pt;}
._28{width:920.106654pt;}
._1d{width:929.152000pt;}
._d{width:932.522667pt;}
.fs12{font-size:12.510710pt;}
.fse{font-size:28.000000pt;}
.fsf{font-size:32.000000pt;}
.fs11{font-size:33.362142pt;}
.fs10{font-size:35.466667pt;}
.fsb{font-size:36.586667pt;}
.fs2{font-size:37.333333pt;}
.fs9{font-size:40.000000pt;}
.fs6{font-size:41.066666pt;}
.fs0{font-size:42.666667pt;}
.fsd{font-size:48.000000pt;}
.fsc{font-size:49.066666pt;}
.fsa{font-size:52.266667pt;}
.fs8{font-size:53.333333pt;}
.fs7{font-size:54.933333pt;}
.fs5{font-size:58.666667pt;}
.fs3{font-size:66.666667pt;}
.fs1{font-size:69.333333pt;}
.fs4{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:27.257080pt;}
.yc{bottom:70.229599pt;}
.yb{bottom:80.897599pt;}
.y109{bottom:88.410665pt;}
.y10b{bottom:88.410678pt;}
.y10d{bottom:88.410686pt;}
.y10f{bottom:88.410699pt;}
.y113{bottom:88.410711pt;}
.y117{bottom:88.410724pt;}
.y11a{bottom:88.410737pt;}
.y11b{bottom:88.410751pt;}
.y11e{bottom:88.410764pt;}
.y121{bottom:88.410777pt;}
.y124{bottom:88.410790pt;}
.ya{bottom:91.565599pt;}
.y107{bottom:92.557729pt;}
.yf3{bottom:92.576929pt;}
.y63{bottom:94.110003pt;}
.y96{bottom:94.786929pt;}
.y1b2{bottom:95.767069pt;}
.y1dc{bottom:95.773469pt;}
.y220{bottom:95.779869pt;}
.y17d{bottom:97.903862pt;}
.y15e{bottom:97.910262pt;}
.y177{bottom:97.916662pt;}
.y144{bottom:97.923073pt;}
.ya5{bottom:101.571067pt;}
.yb1{bottom:101.596657pt;}
.y9{bottom:102.233599pt;}
.y290{bottom:103.088000pt;}
.y27a{bottom:104.304647pt;}
.yf2{bottom:108.570529pt;}
.y62{bottom:110.103603pt;}
.y95{bottom:110.780529pt;}
.y1db{bottom:111.767069pt;}
.y21f{bottom:111.773469pt;}
.y1b1{bottom:111.792669pt;}
.y202{bottom:111.837469pt;}
.y8{bottom:112.901599pt;}
.y17c{bottom:113.897462pt;}
.y15d{bottom:113.903862pt;}
.y176{bottom:113.910262pt;}
.y143{bottom:113.916673pt;}
.y279{bottom:116.304647pt;}
.ya4{bottom:117.564667pt;}
.yb0{bottom:117.590257pt;}
.y28e{bottom:118.901465pt;}
.y7{bottom:123.569599pt;}
.y28f{bottom:124.368000pt;}
.yf1{bottom:124.564129pt;}
.y61{bottom:126.097203pt;}
.y94{bottom:126.774129pt;}
.y1da{bottom:127.767069pt;}
.y241{bottom:127.777049pt;}
.y1b0{bottom:127.786269pt;}
.y201{bottom:127.831069pt;}
.y278{bottom:128.304647pt;}
.y17b{bottom:129.891062pt;}
.y15c{bottom:129.897462pt;}
.y175{bottom:129.903862pt;}
.y142{bottom:129.910273pt;}
.ya3{bottom:133.571067pt;}
.yaf{bottom:133.583857pt;}
.y6{bottom:134.237599pt;}
.y28b{bottom:134.909465pt;}
.y240{bottom:139.777049pt;}
.y277{bottom:140.304647pt;}
.yf0{bottom:140.557729pt;}
.y60{bottom:142.090803pt;}
.y93{bottom:142.793329pt;}
.y1af{bottom:143.779869pt;}
.y200{bottom:143.824669pt;}
.y5{bottom:144.905599pt;}
.y15b{bottom:145.891062pt;}
.y174{bottom:145.897462pt;}
.y141{bottom:145.903873pt;}
.y17a{bottom:145.923596pt;}
.y28d{bottom:148.870799pt;}
.y28c{bottom:149.385071pt;}
.ya2{bottom:149.564667pt;}
.yae{bottom:149.577457pt;}
.y289{bottom:150.157999pt;}
.y23f{bottom:151.777049pt;}
.y276{bottom:152.304647pt;}
.y106{bottom:156.583339pt;}
.yef{bottom:156.653617pt;}
.y5f{bottom:158.084403pt;}
.y92{bottom:158.786929pt;}
.y1ae{bottom:159.773469pt;}
.y1ff{bottom:159.818269pt;}
.y1d9{bottom:159.824669pt;}
.y15a{bottom:161.891062pt;}
.y140{bottom:161.897473pt;}
.y179{bottom:161.917196pt;}
.y292{bottom:162.561727pt;}
.y23e{bottom:163.777049pt;}
.y288{bottom:164.288666pt;}
.y275{bottom:164.304647pt;}
.y28a{bottom:165.233999pt;}
.ya1{bottom:165.568924pt;}
.yad{bottom:165.571057pt;}
.y2bf{bottom:165.638000pt;}
.y286{bottom:166.912123pt;}
.y105{bottom:172.576939pt;}
.yee{bottom:172.647217pt;}
.y5e{bottom:174.078003pt;}
.y91{bottom:174.780529pt;}
.y1ad{bottom:175.767069pt;}
.y23d{bottom:175.777049pt;}
.y1fe{bottom:175.811869pt;}
.y1d8{bottom:175.818269pt;}
.y274{bottom:176.304647pt;}
.y2be{bottom:177.638000pt;}
.y13f{bottom:177.891073pt;}
.y178{bottom:177.910796pt;}
.y2c{bottom:178.988139pt;}
.y285{bottom:180.034790pt;}
.y287{bottom:181.450133pt;}
.ya0{bottom:181.564657pt;}
.y283{bottom:182.897070pt;}
.y23c{bottom:187.777049pt;}
.y273{bottom:188.304647pt;}
.y104{bottom:188.570539pt;}
.yed{bottom:188.640817pt;}
.y2bd{bottom:189.638000pt;}
.y5d{bottom:190.078003pt;}
.y90{bottom:190.774129pt;}
.y2b{bottom:190.988139pt;}
.y21e{bottom:191.773469pt;}
.y1ac{bottom:191.779869pt;}
.y1fd{bottom:191.805469pt;}
.y1d7{bottom:191.811869pt;}
.y159{bottom:193.891073pt;}
.y13e{bottom:193.916530pt;}
.y282{bottom:195.609070pt;}
.y284{bottom:196.835592pt;}
.yac{bottom:197.583857pt;}
.y280{bottom:198.903062pt;}
.y23b{bottom:199.777049pt;}
.y272{bottom:200.304647pt;}
.y2a{bottom:202.988139pt;}
.y103{bottom:204.564139pt;}
.yec{bottom:204.634417pt;}
.y5c{bottom:206.161081pt;}
.y8f{bottom:206.774129pt;}
.y21d{bottom:207.767069pt;}
.y1ab{bottom:207.773469pt;}
.y1fc{bottom:207.799069pt;}
.y1d6{bottom:207.805469pt;}
.y158{bottom:209.903873pt;}
.y13d{bottom:209.910130pt;}
.y27f{bottom:211.232396pt;}
.y23a{bottom:211.777049pt;}
.y281{bottom:212.267863pt;}
.y271{bottom:212.304647pt;}
.yab{bottom:213.577457pt;}
.y9f{bottom:213.596657pt;}
.y27c{bottom:214.905331pt;}
.y27e{bottom:214.909729pt;}
.y29{bottom:214.988139pt;}
.y102{bottom:220.557739pt;}
.yeb{bottom:220.628017pt;}
.y2bc{bottom:221.638021pt;}
.y5b{bottom:222.154681pt;}
.y1aa{bottom:223.767069pt;}
.y1fb{bottom:223.792669pt;}
.y1d5{bottom:223.799069pt;}
.y270{bottom:224.304647pt;}
.y157{bottom:225.897473pt;}
.y13c{bottom:225.903730pt;}
.y27b{bottom:227.430664pt;}
.y27d{bottom:228.278259pt;}
.yaa{bottom:229.571057pt;}
.y9e{bottom:229.590257pt;}
.y2bb{bottom:233.638021pt;}
.y26f{bottom:236.304647pt;}
.y101{bottom:236.557739pt;}
.yea{bottom:236.621617pt;}
.y180{bottom:238.004659pt;}
.y5a{bottom:238.148281pt;}
.y8e{bottom:238.882929pt;}
.y1a9{bottom:239.767069pt;}
.y1fa{bottom:239.786269pt;}
.y1d4{bottom:239.792669pt;}
.y21c{bottom:239.805469pt;}
.y156{bottom:241.891073pt;}
.y13b{bottom:241.897330pt;}
.ya9{bottom:245.564657pt;}
.y9d{bottom:245.583857pt;}
.y2ba{bottom:245.638021pt;}
.y239{bottom:246.447049pt;}
.y26e{bottom:248.304647pt;}
.y291{bottom:250.972392pt;}
.y17f{bottom:251.337992pt;}
.y100{bottom:252.570397pt;}
.ye9{bottom:252.615217pt;}
.y59{bottom:254.141881pt;}
.y8d{bottom:254.876529pt;}
.y1f9{bottom:255.779869pt;}
.y1d3{bottom:255.786269pt;}
.y21b{bottom:255.799069pt;}
.y2b9{bottom:257.638021pt;}
.y13a{bottom:257.890930pt;}
.y238{bottom:258.447049pt;}
.y26d{bottom:260.304647pt;}
.y9c{bottom:261.577457pt;}
.ya8{bottom:261.585467pt;}
.y17e{bottom:264.671326pt;}
.yff{bottom:268.563997pt;}
.ye8{bottom:268.608817pt;}
.y2b8{bottom:269.638021pt;}
.y58{bottom:270.135481pt;}
.y8c{bottom:270.870129pt;}
.y1a8{bottom:271.767069pt;}
.y1f8{bottom:271.773469pt;}
.y1d2{bottom:271.779869pt;}
.y21a{bottom:271.792669pt;}
.y26c{bottom:272.304647pt;}
.y139{bottom:273.890930pt;}
.y237{bottom:275.777049pt;}
.y9b{bottom:277.571057pt;}
.ya7{bottom:277.579067pt;}
.y2b7{bottom:281.638021pt;}
.y26b{bottom:284.304647pt;}
.yfe{bottom:284.557597pt;}
.ye7{bottom:284.602417pt;}
.y57{bottom:286.129081pt;}
.y8b{bottom:286.863729pt;}
.y1f7{bottom:287.767069pt;}
.y1d1{bottom:287.773469pt;}
.y236{bottom:287.777049pt;}
.y219{bottom:287.786269pt;}
.y1a7{bottom:287.869449pt;}
.y138{bottom:289.903730pt;}
.y155{bottom:289.910130pt;}
.y9a{bottom:293.564657pt;}
.ya6{bottom:293.572667pt;}
.y2b6{bottom:293.638021pt;}
.y26a{bottom:296.304647pt;}
.yfd{bottom:300.563997pt;}
.ye6{bottom:300.596017pt;}
.y10e{bottom:302.085348pt;}
.y110{bottom:302.085362pt;}
.y114{bottom:302.085373pt;}
.y118{bottom:302.085386pt;}
.y11c{bottom:302.085413pt;}
.y11f{bottom:302.085426pt;}
.y122{bottom:302.085439pt;}
.y125{bottom:302.085452pt;}
.y56{bottom:302.122681pt;}
.y8a{bottom:302.857329pt;}
.y1d0{bottom:303.767069pt;}
.y218{bottom:303.779869pt;}
.y1f6{bottom:303.831049pt;}
.y1a6{bottom:303.863049pt;}
.y235{bottom:305.107049pt;}
.y2b5{bottom:305.638021pt;}
.y137{bottom:305.897330pt;}
.y154{bottom:305.903730pt;}
.y269{bottom:308.304647pt;}
.yfc{bottom:316.557597pt;}
.ye5{bottom:316.589617pt;}
.y234{bottom:317.107049pt;}
.y2b4{bottom:317.638021pt;}
.y55{bottom:318.116281pt;}
.y89{bottom:318.850929pt;}
.y1cf{bottom:319.767069pt;}
.y217{bottom:319.773469pt;}
.y1f5{bottom:319.824649pt;}
.y1a5{bottom:319.856649pt;}
.y268{bottom:320.304647pt;}
.y136{bottom:321.890930pt;}
.y153{bottom:321.897330pt;}
.y2b3{bottom:329.638021pt;}
.y267{bottom:332.304647pt;}
.ye4{bottom:332.583217pt;}
.yfb{bottom:332.624652pt;}
.y54{bottom:334.109881pt;}
.y233{bottom:334.437049pt;}
.y88{bottom:334.844529pt;}
.y216{bottom:335.767069pt;}
.y1ce{bottom:335.779849pt;}
.y1f4{bottom:335.818249pt;}
.y1a4{bottom:335.850249pt;}
.yb4{bottom:336.746685pt;}
.y152{bottom:337.890930pt;}
.y135{bottom:337.929351pt;}
.y2b2{bottom:341.638021pt;}
.y266{bottom:344.304647pt;}
.yb3{bottom:348.077352pt;}
.ye3{bottom:348.576817pt;}
.yfa{bottom:348.618252pt;}
.y53{bottom:350.103481pt;}
.y87{bottom:350.838129pt;}
.y232{bottom:351.767049pt;}
.y1cd{bottom:351.773449pt;}
.y215{bottom:351.799049pt;}
.y1f3{bottom:351.811849pt;}
.y1a3{bottom:351.843849pt;}
.y2b1{bottom:353.638021pt;}
.y151{bottom:353.897351pt;}
.y134{bottom:353.922951pt;}
.y265{bottom:356.304647pt;}
.y28{bottom:360.191162pt;}
.y231{bottom:363.767049pt;}
.ye2{bottom:364.570417pt;}
.yf9{bottom:364.611852pt;}
.y2b0{bottom:365.638021pt;}
.y52{bottom:366.097081pt;}
.y86{bottom:366.831729pt;}
.y1cc{bottom:367.767049pt;}
.y214{bottom:367.792649pt;}
.y1f2{bottom:367.805449pt;}
.y1a2{bottom:367.837449pt;}
.ydc{bottom:367.889187pt;}
.y264{bottom:368.304647pt;}
.y150{bottom:369.890951pt;}
.y133{bottom:369.916551pt;}
.y230{bottom:375.767049pt;}
.y27{bottom:376.191162pt;}
.y2af{bottom:377.638021pt;}
.ydb{bottom:379.889187pt;}
.y263{bottom:380.304647pt;}
.ye1{bottom:380.564017pt;}
.yf8{bottom:380.605452pt;}
.y51{bottom:382.090681pt;}
.y85{bottom:382.825329pt;}
.y1cb{bottom:383.773449pt;}
.y213{bottom:383.786249pt;}
.y1f1{bottom:383.799049pt;}
.y1a1{bottom:383.831049pt;}
.y14f{bottom:385.890951pt;}
.y132{bottom:385.910151pt;}
.y2ae{bottom:389.638021pt;}
.yda{bottom:396.091854pt;}
.y26{bottom:396.191162pt;}
.ye0{bottom:396.557617pt;}
.yf7{bottom:396.599052pt;}
.y50{bottom:398.084281pt;}
.y84{bottom:398.818929pt;}
.y1ca{bottom:399.767049pt;}
.y212{bottom:399.779849pt;}
.y1f0{bottom:399.792649pt;}
.y1a0{bottom:399.824649pt;}
.y2ad{bottom:401.638021pt;}
.y131{bottom:401.903751pt;}
.y22f{bottom:403.767049pt;}
.yd9{bottom:408.091854pt;}
.y25{bottom:412.191162pt;}
.ydf{bottom:412.570417pt;}
.yf6{bottom:412.592652pt;}
.y2ac{bottom:413.638021pt;}
.y4f{bottom:414.077881pt;}
.y83{bottom:414.812529pt;}
.y22e{bottom:415.767049pt;}
.y1c9{bottom:415.773449pt;}
.y1ef{bottom:415.786249pt;}
.y19f{bottom:415.818249pt;}
.y130{bottom:417.897351pt;}
.y14e{bottom:417.929351pt;}
.yd8{bottom:420.091854pt;}
.y2ab{bottom:425.638021pt;}
.yde{bottom:428.564017pt;}
.yf5{bottom:428.586252pt;}
.y4e{bottom:430.097081pt;}
.y82{bottom:430.806129pt;}
.y1c8{bottom:431.767049pt;}
.y1ee{bottom:431.779849pt;}
.y19e{bottom:431.811849pt;}
.y24{bottom:432.191162pt;}
.y12f{bottom:433.890951pt;}
.y14d{bottom:433.922951pt;}
.yd7{bottom:436.230520pt;}
.y2aa{bottom:437.638021pt;}
.y262{bottom:441.637980pt;}
.ydd{bottom:444.557617pt;}
.yf4{bottom:444.579852pt;}
.y4d{bottom:446.090681pt;}
.y81{bottom:446.799729pt;}
.y1c7{bottom:447.767049pt;}
.y1ed{bottom:447.773449pt;}
.y19d{bottom:447.805449pt;}
.y211{bottom:447.811849pt;}
.y23{bottom:448.191162pt;}
.yd6{bottom:448.230520pt;}
.y2a9{bottom:449.638021pt;}
.y12e{bottom:449.910151pt;}
.y14c{bottom:449.916551pt;}
.y2a8{bottom:461.638021pt;}
.y4c{bottom:462.084281pt;}
.y80{bottom:462.793329pt;}
.y1ec{bottom:463.767049pt;}
.y19c{bottom:463.799049pt;}
.y210{bottom:463.805449pt;}
.y22{bottom:464.191162pt;}
.yd5{bottom:464.369187pt;}
.y261{bottom:465.637980pt;}
.y12d{bottom:465.903751pt;}
.y14b{bottom:465.910151pt;}
.y2a7{bottom:473.638021pt;}
.yd4{bottom:476.369187pt;}
.y260{bottom:477.637980pt;}
.y4b{bottom:478.077881pt;}
.y7f{bottom:478.786929pt;}
.y1c6{bottom:479.767049pt;}
.y19b{bottom:479.792649pt;}
.y20f{bottom:479.799049pt;}
.y21{bottom:480.191162pt;}
.y12c{bottom:481.897351pt;}
.y14a{bottom:481.903751pt;}
.y2a6{bottom:485.638021pt;}
.y25f{bottom:489.637980pt;}
.yd3{bottom:492.507854pt;}
.y4a{bottom:494.090681pt;}
.y7e{bottom:494.780529pt;}
.y1eb{bottom:495.773449pt;}
.y19a{bottom:495.786249pt;}
.y1c5{bottom:495.792649pt;}
.y2a5{bottom:497.638021pt;}
.y12b{bottom:497.890951pt;}
.y149{bottom:497.897351pt;}
.y20{bottom:500.191162pt;}
.yd2{bottom:504.507854pt;}
.y108{bottom:504.991333pt;}
.y25e{bottom:505.637980pt;}
.y2a4{bottom:509.638021pt;}
.y49{bottom:510.084281pt;}
.y7d{bottom:510.774129pt;}
.y1ea{bottom:511.767049pt;}
.y199{bottom:511.779849pt;}
.y1c4{bottom:511.786249pt;}
.y12a{bottom:513.890951pt;}
.y1f{bottom:516.191162pt;}
.y25d{bottom:517.637980pt;}
.yd1{bottom:520.635854pt;}
.y2a3{bottom:521.638021pt;}
.y48{bottom:526.077881pt;}
.y7c{bottom:526.780529pt;}
.y1e9{bottom:527.767049pt;}
.y198{bottom:527.773449pt;}
.y1c3{bottom:527.779849pt;}
.y25c{bottom:529.637980pt;}
.y148{bottom:529.897351pt;}
.y1e{bottom:532.191162pt;}
.y2a2{bottom:533.638021pt;}
.yd0{bottom:536.774520pt;}
.y25b{bottom:537.637980pt;}
.y47{bottom:542.103481pt;}
.y7b{bottom:542.774129pt;}
.y197{bottom:543.767049pt;}
.y1c2{bottom:543.773449pt;}
.y2a1{bottom:545.638021pt;}
.y147{bottom:545.890951pt;}
.y129{bottom:545.903751pt;}
.y1d{bottom:548.191162pt;}
.ycf{bottom:548.774520pt;}
.y2a0{bottom:557.638021pt;}
.y46{bottom:558.097081pt;}
.y7a{bottom:558.838170pt;}
.y196{bottom:559.767049pt;}
.y22d{bottom:559.773449pt;}
.yce{bottom:560.774520pt;}
.y25a{bottom:561.637980pt;}
.y128{bottom:561.897351pt;}
.y146{bottom:561.933473pt;}
.y1c{bottom:564.191162pt;}
.y29f{bottom:569.638021pt;}
.ycd{bottom:572.774520pt;}
.y259{bottom:573.637980pt;}
.y45{bottom:574.090681pt;}
.y79{bottom:574.831770pt;}
.y20e{bottom:575.767049pt;}
.y1c1{bottom:575.773449pt;}
.y1e8{bottom:575.805449pt;}
.y127{bottom:577.890951pt;}
.y145{bottom:577.927073pt;}
.y29e{bottom:581.638021pt;}
.y1b{bottom:584.191162pt;}
.y10c{bottom:585.498670pt;}
.y111{bottom:585.498690pt;}
.y115{bottom:585.498703pt;}
.y119{bottom:585.498717pt;}
.y11d{bottom:585.498743pt;}
.y120{bottom:585.498756pt;}
.y123{bottom:585.498769pt;}
.y126{bottom:585.498782pt;}
.ycc{bottom:588.913187pt;}
.y44{bottom:590.084281pt;}
.y78{bottom:590.825370pt;}
.y1c0{bottom:591.767049pt;}
.y20d{bottom:591.773449pt;}
.y195{bottom:591.792649pt;}
.y1e7{bottom:591.799049pt;}
.y29d{bottom:593.638021pt;}
.y258{bottom:597.637980pt;}
.y1a{bottom:600.191162pt;}
.ycb{bottom:600.913187pt;}
.y29c{bottom:605.638021pt;}
.y43{bottom:606.077881pt;}
.y77{bottom:606.818970pt;}
.y20c{bottom:607.767049pt;}
.y194{bottom:607.786249pt;}
.y1e6{bottom:607.792649pt;}
.y257{bottom:609.637980pt;}
.yca{bottom:612.913187pt;}
.y19{bottom:616.191162pt;}
.y29b{bottom:617.638021pt;}
.y42{bottom:622.097081pt;}
.y76{bottom:622.812570pt;}
.y20b{bottom:623.773449pt;}
.y193{bottom:623.779849pt;}
.y1e5{bottom:623.786249pt;}
.yc9{bottom:624.913187pt;}
.y29a{bottom:629.638021pt;}
.y18{bottom:632.191162pt;}
.y256{bottom:633.637980pt;}
.y173{bottom:637.265350pt;}
.y41{bottom:638.090681pt;}
.y75{bottom:638.806170pt;}
.y20a{bottom:639.767049pt;}
.y192{bottom:639.773449pt;}
.y1e4{bottom:639.779849pt;}
.yc8{bottom:641.041187pt;}
.y299{bottom:641.638021pt;}
.y255{bottom:645.637980pt;}
.y172{bottom:649.265350pt;}
.y17{bottom:652.191162pt;}
.yc7{bottom:653.041187pt;}
.y298{bottom:653.638021pt;}
.y40{bottom:654.084281pt;}
.y74{bottom:654.799770pt;}
.y191{bottom:655.767049pt;}
.y1e3{bottom:655.773449pt;}
.y209{bottom:655.786290pt;}
.y171{bottom:661.265350pt;}
.yc6{bottom:665.041187pt;}
.y297{bottom:665.638021pt;}
.y16{bottom:668.191162pt;}
.y254{bottom:669.637980pt;}
.y3f{bottom:670.077881pt;}
.y73{bottom:670.793370pt;}
.y1e2{bottom:671.767049pt;}
.y190{bottom:671.773490pt;}
.y208{bottom:671.779890pt;}
.y1bf{bottom:671.792690pt;}
.yc5{bottom:677.041187pt;}
.y170{bottom:677.468016pt;}
.y296{bottom:677.638021pt;}
.y15{bottom:684.191162pt;}
.y3e{bottom:686.148362pt;}
.y72{bottom:686.786970pt;}
.y18f{bottom:687.767090pt;}
.y207{bottom:687.773490pt;}
.y22c{bottom:687.779890pt;}
.y1be{bottom:687.786290pt;}
.y16f{bottom:689.468016pt;}
.y295{bottom:689.638021pt;}
.yc4{bottom:693.179854pt;}
.y16e{bottom:701.468016pt;}
.y253{bottom:701.638021pt;}
.y3d{bottom:702.141962pt;}
.y71{bottom:702.780570pt;}
.y18e{bottom:703.767090pt;}
.y22b{bottom:703.773490pt;}
.y1bd{bottom:703.779890pt;}
.y14{bottom:704.191162pt;}
.yc3{bottom:705.179854pt;}
.y252{bottom:713.638021pt;}
.yc2{bottom:717.179854pt;}
.y16d{bottom:717.596016pt;}
.y3c{bottom:718.135562pt;}
.y70{bottom:718.774170pt;}
.y18d{bottom:719.767090pt;}
.y1bc{bottom:719.773490pt;}
.y251{bottom:725.638021pt;}
.yc1{bottom:729.179854pt;}
.y16c{bottom:729.596016pt;}
.y3b{bottom:734.129162pt;}
.y6f{bottom:734.774170pt;}
.y1bb{bottom:735.767090pt;}
.y22a{bottom:735.792690pt;}
.y250{bottom:737.638021pt;}
.y16b{bottom:741.596016pt;}
.yc0{bottom:745.307854pt;}
.y24f{bottom:749.638021pt;}
.y3a{bottom:750.122762pt;}
.y6e{bottom:750.806170pt;}
.y1ba{bottom:751.767090pt;}
.y1e1{bottom:751.773490pt;}
.y18c{bottom:751.779890pt;}
.y229{bottom:751.786290pt;}
.y206{bottom:751.792690pt;}
.y16a{bottom:753.596016pt;}
.ybf{bottom:761.446520pt;}
.y24e{bottom:761.638021pt;}
.y39{bottom:766.116362pt;}
.y6d{bottom:766.799770pt;}
.y1e0{bottom:767.767090pt;}
.y18b{bottom:767.773490pt;}
.y228{bottom:767.779890pt;}
.y205{bottom:767.786290pt;}
.y13{bottom:768.491211pt;}
.y169{bottom:769.724016pt;}
.ybe{bottom:773.446520pt;}
.y24d{bottom:773.638021pt;}
.y168{bottom:781.724016pt;}
.y38{bottom:782.109962pt;}
.y6c{bottom:782.793370pt;}
.y18a{bottom:783.767090pt;}
.y227{bottom:783.773490pt;}
.y204{bottom:783.779890pt;}
.y24c{bottom:785.638021pt;}
.ybd{bottom:789.585187pt;}
.y167{bottom:793.724016pt;}
.y294{bottom:797.638021pt;}
.y37{bottom:798.103562pt;}
.y6b{bottom:798.786970pt;}
.y1b9{bottom:799.767090pt;}
.y203{bottom:799.773490pt;}
.y189{bottom:799.779890pt;}
.y12{bottom:800.513358pt;}
.ybc{bottom:801.585187pt;}
.y166{bottom:805.724016pt;}
.y24b{bottom:809.638021pt;}
.y36{bottom:814.097162pt;}
.y6a{bottom:814.780570pt;}
.y1b8{bottom:815.767090pt;}
.y188{bottom:815.773490pt;}
.y1df{bottom:815.786290pt;}
.y226{bottom:815.811890pt;}
.ybb{bottom:817.723854pt;}
.y165{bottom:817.724016pt;}
.y24a{bottom:821.638021pt;}
.yba{bottom:829.723854pt;}
.y35{bottom:830.090762pt;}
.y69{bottom:830.774170pt;}
.y187{bottom:831.767090pt;}
.y1de{bottom:831.779890pt;}
.y225{bottom:831.805490pt;}
.y293{bottom:833.638021pt;}
.y164{bottom:833.862683pt;}
.y11{bottom:835.169358pt;}
.y249{bottom:845.638021pt;}
.yb9{bottom:845.862520pt;}
.y163{bottom:845.862683pt;}
.y34{bottom:846.084362pt;}
.y68{bottom:846.774170pt;}
.y1b7{bottom:847.767090pt;}
.y186{bottom:847.773490pt;}
.y224{bottom:847.799090pt;}
.y248{bottom:857.638021pt;}
.yb8{bottom:857.862520pt;}
.y162{bottom:857.862683pt;}
.y33{bottom:862.077962pt;}
.y185{bottom:863.767090pt;}
.y223{bottom:863.792690pt;}
.y10a{bottom:867.855991pt;}
.y112{bottom:867.856024pt;}
.y116{bottom:867.856037pt;}
.y247{bottom:869.638021pt;}
.y10{bottom:869.825358pt;}
.yb7{bottom:869.862520pt;}
.y161{bottom:869.862683pt;}
.y32{bottom:878.084362pt;}
.y67{bottom:878.780570pt;}
.y184{bottom:879.767090pt;}
.y1b6{bottom:879.780136pt;}
.y222{bottom:879.786290pt;}
.y246{bottom:881.638021pt;}
.y245{bottom:893.638021pt;}
.yb6{bottom:893.766520pt;}
.y160{bottom:893.766683pt;}
.y31{bottom:894.077962pt;}
.y66{bottom:894.774170pt;}
.y183{bottom:895.773490pt;}
.y1b5{bottom:895.773736pt;}
.y221{bottom:895.779890pt;}
.y244{bottom:905.638021pt;}
.yb5{bottom:905.766520pt;}
.y15f{bottom:905.766683pt;}
.y30{bottom:910.077962pt;}
.y65{bottom:910.815885pt;}
.y182{bottom:911.767090pt;}
.y1b4{bottom:911.767336pt;}
.y1dd{bottom:911.773490pt;}
.y243{bottom:917.638021pt;}
.y4{bottom:918.544515pt;}
.y2f{bottom:926.077962pt;}
.y64{bottom:926.809485pt;}
.yb2{bottom:927.377848pt;}
.y1b3{bottom:927.760936pt;}
.y181{bottom:927.767090pt;}
.y242{bottom:929.638021pt;}
.yd{bottom:970.393311pt;}
.y3{bottom:975.375182pt;}
.yf{bottom:976.979899pt;}
.y2{bottom:988.708515pt;}
.y97{bottom:1001.355225pt;}
.y2d{bottom:1001.355306pt;}
.y99{bottom:1001.561768pt;}
.y1{bottom:1001.711182pt;}
.y98{bottom:1002.044515pt;}
.y2e{bottom:1002.048639pt;}
.h25{height:9.458097pt;}
.h1f{height:24.480000pt;}
.h1a{height:24.724000pt;}
.h23{height:25.221780pt;}
.h1d{height:26.656000pt;}
.h21{height:26.954667pt;}
.h22{height:27.132000pt;}
.h1e{height:28.560000pt;}
.h20{height:31.584000pt;}
.h7{height:32.965333pt;}
.hf{height:35.320000pt;}
.h14{height:35.541333pt;}
.h13{height:35.578667pt;}
.h6{height:36.922667pt;}
.h16{height:37.674667pt;}
.h1c{height:38.080000pt;}
.h19{height:38.920000pt;}
.h4{height:40.618667pt;}
.h3{height:40.661333pt;}
.h1b{height:40.724000pt;}
.h8{height:41.206667pt;}
.h15{height:41.514667pt;}
.h2{height:41.984000pt;}
.h18{height:42.197333pt;}
.he{height:47.093333pt;}
.h12{height:47.472000pt;}
.h11{height:47.741866pt;}
.h10{height:49.653333pt;}
.hd{height:51.893333pt;}
.hc{height:54.329067pt;}
.hb{height:59.728337pt;}
.h9{height:63.466667pt;}
.h5{height:77.059924pt;}
.h17{height:85.674667pt;}
.ha{height:121.856000pt;}
.h24{height:181.461324pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w2{width:210.849325pt;}
.w3{width:306.455994pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x37{left:11.374268pt;}
.x5{left:52.300130pt;}
.x1{left:75.496002pt;}
.x2{left:82.430532pt;}
.x7{left:84.162669pt;}
.x9{left:86.252935pt;}
.x3c{left:95.590535pt;}
.x39{left:124.044800pt;}
.x3b{left:125.070801pt;}
.xe{left:175.850403pt;}
.xf{left:197.461731pt;}
.x10{left:209.461731pt;}
.x11{left:221.461731pt;}
.x3{left:240.726664pt;}
.x12{left:245.365731pt;}
.x13{left:257.365731pt;}
.x14{left:273.493731pt;}
.x15{left:285.493731pt;}
.x2e{left:290.225202pt;}
.xd{left:301.233194pt;}
.x16{left:313.632398pt;}
.x17{left:325.632398pt;}
.x18{left:341.760398pt;}
.x19{left:353.760398pt;}
.x1a{left:365.760398pt;}
.x1b{left:377.760398pt;}
.x1c{left:393.888398pt;}
.xa{left:406.294802pt;}
.x36{left:411.653320pt;}
.xb{left:416.961594pt;}
.x1d{left:417.888398pt;}
.x35{left:423.027588pt;}
.x34{left:423.945475pt;}
.x30{left:426.299194pt;}
.x31{left:429.804118pt;}
.x1e{left:434.027064pt;}
.x32{left:435.898785pt;}
.x33{left:438.314657pt;}
.x1f{left:450.155064pt;}
.x20{left:462.155064pt;}
.x21{left:474.155064pt;}
.x22{left:486.155064pt;}
.x23{left:502.283064pt;}
.x2d{left:504.326535pt;}
.x4{left:507.261353pt;}
.x24{left:514.283064pt;}
.x25{left:526.283064pt;}
.x38{left:535.698120pt;}
.x3a{left:536.724121pt;}
.x26{left:538.283064pt;}
.x27{left:554.411064pt;}
.x28{left:566.411064pt;}
.x6{left:576.993083pt;}
.x29{left:578.411064pt;}
.xc{left:587.750528pt;}
.x2a{left:594.613731pt;}
.x2b{left:606.613731pt;}
.x2c{left:618.613731pt;}
.x2f{left:658.727458pt;}
.x8{left:664.199341pt;}
}




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