
    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_11f1b14fc0ba808c0de3d6e0.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_6a60e8c26e37f5fa7cf47037.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_befc9fe96699c79acbe18efe.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_77961e406e726e9597a91974.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.716000;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_e574fc758c5bc8eeeae9bd45.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_c3d14d7810b57bfb11c485aa.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_9c856e7c8d7798f317937919.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.930000;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_c7c70cb79016f6685711a81e.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_f74ab987d3b5b59ce41fbaf2.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_4d0049d1558dbd44710efdfd.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.444000;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_a7efa9ccd48ea9c5dc5fbf6f.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_eb7ff2b7e779485613f94ebf.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_f09eac71ad7b2e95057502c1.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.921000;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_5459bcf4719b061a1fdf4cc2.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.898000;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_2ee3cc5e8c8706de74d9fa35.woff2')format("woff");}.fff{font-family:fff;line-height:0.861000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250189,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-18.000000px;}
.v5{vertical-align:-16.800568px;}
.v7{vertical-align:-1.725235px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.488000px;}
.v8{vertical-align:18.000000px;}
.v6{vertical-align:19.217977px;}
.v4{vertical-align:23.461565px;}
.v2{vertical-align:26.399780px;}
.ls17{letter-spacing:-5.115600px;}
.lsb{letter-spacing:-2.162803px;}
.ls6{letter-spacing:-1.864485px;}
.ls5{letter-spacing:-1.566167px;}
.lsf{letter-spacing:-1.248000px;}
.ls3{letter-spacing:-1.050000px;}
.ls4{letter-spacing:-0.969532px;}
.lsd{letter-spacing:-0.894953px;}
.ls11{letter-spacing:-0.319488px;}
.ls8{letter-spacing:-0.223738px;}
.lsa{letter-spacing:-0.149159px;}
.ls9{letter-spacing:-0.074579px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000002px;}
.ls18{letter-spacing:0.000070px;}
.lse{letter-spacing:0.000098px;}
.ls7{letter-spacing:1.491588px;}
.lsc{letter-spacing:1.566167px;}
.ls0{letter-spacing:5.460000px;}
.ls14{letter-spacing:119.935795px;}
.ls13{letter-spacing:136.101888px;}
.ls15{letter-spacing:136.293574px;}
.ls12{letter-spacing:152.267974px;}
.ls10{letter-spacing:152.395776px;}
.ls16{letter-spacing:152.459674px;}
.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;}
}
.wsb3{word-spacing:-166.900531px;}
.wsae{word-spacing:-166.836634px;}
.wsb5{word-spacing:-152.267974px;}
.wsb0{word-spacing:-150.542746px;}
.wsb2{word-spacing:-134.696121px;}
.wsb1{word-spacing:-134.376653px;}
.ws1{word-spacing:-21.216000px;}
.wse{word-spacing:-20.956811px;}
.ws9{word-spacing:-20.882232px;}
.ws5{word-spacing:-19.390644px;}
.wsb{word-spacing:-19.316065px;}
.wsc{word-spacing:-19.241485px;}
.wsa{word-spacing:-19.166906px;}
.wsf{word-spacing:-18.495691px;}
.ws6{word-spacing:-18.421112px;}
.ws7{word-spacing:-17.824477px;}
.ws8{word-spacing:-17.526159px;}
.wsd{word-spacing:-17.227841px;}
.ws2c{word-spacing:-13.935600px;}
.wse5{word-spacing:-13.818000px;}
.ws3{word-spacing:-12.483600px;}
.ws4{word-spacing:-12.420000px;}
.ws2b{word-spacing:-11.426400px;}
.ws0{word-spacing:-10.176000px;}
.ws2{word-spacing:-10.117800px;}
.ws77{word-spacing:-9.936000px;}
.wsf4{word-spacing:-9.855000px;}
.wse6{word-spacing:-9.315000px;}
.ws14{word-spacing:-8.148000px;}
.wsf3{word-spacing:-7.965000px;}
.ws10{word-spacing:-6.898500px;}
.ws74{word-spacing:-6.594000px;}
.ws97{word-spacing:-6.468000px;}
.wsb6{word-spacing:-6.232800px;}
.ws12{word-spacing:-5.640000px;}
.wsaa{word-spacing:-4.512000px;}
.wsc1{word-spacing:-2.016000px;}
.ws29{word-spacing:-1.491588px;}
.ws88{word-spacing:-0.764400px;}
.ws8b{word-spacing:-0.705600px;}
.wsc5{word-spacing:-0.646800px;}
.ws9b{word-spacing:-0.588000px;}
.ws4c{word-spacing:-0.529200px;}
.wsbf{word-spacing:-0.352800px;}
.wsa9{word-spacing:-0.235200px;}
.ws13{word-spacing:-0.120000px;}
.wsa5{word-spacing:-0.117600px;}
.ws4f{word-spacing:-0.058800px;}
.wsab{word-spacing:-0.048000px;}
.ws73{word-spacing:-0.041160px;}
.ws11{word-spacing:0.000000px;}
.ws37{word-spacing:0.117600px;}
.wsd6{word-spacing:0.176400px;}
.ws39{word-spacing:0.235200px;}
.ws6f{word-spacing:0.294000px;}
.wsb4{word-spacing:0.319488px;}
.ws66{word-spacing:0.470400px;}
.wsd2{word-spacing:0.529200px;}
.wse2{word-spacing:0.588000px;}
.ws51{word-spacing:0.646800px;}
.wsd1{word-spacing:0.882000px;}
.ws8c{word-spacing:0.940800px;}
.ws2a{word-spacing:0.969532px;}
.ws46{word-spacing:1.117200px;}
.ws80{word-spacing:1.176000px;}
.wsa1{word-spacing:1.234800px;}
.ws1d{word-spacing:1.293600px;}
.ws5b{word-spacing:1.352400px;}
.ws47{word-spacing:1.470000px;}
.ws52{word-spacing:1.587600px;}
.ws45{word-spacing:1.646400px;}
.wsdc{word-spacing:1.764000px;}
.wsd5{word-spacing:1.940400px;}
.ws43{word-spacing:2.058000px;}
.wse4{word-spacing:2.116800px;}
.wse9{word-spacing:2.175600px;}
.wse3{word-spacing:2.234400px;}
.wsc8{word-spacing:2.293200px;}
.ws6b{word-spacing:2.410800px;}
.ws42{word-spacing:2.528400px;}
.ws6c{word-spacing:2.587200px;}
.ws84{word-spacing:2.704800px;}
.wsdd{word-spacing:2.763600px;}
.ws89{word-spacing:2.822400px;}
.ws62{word-spacing:2.881200px;}
.ws1f{word-spacing:2.940000px;}
.wseb{word-spacing:2.998800px;}
.ws82{word-spacing:3.234000px;}
.ws44{word-spacing:3.351600px;}
.wsd3{word-spacing:3.410400px;}
.ws4d{word-spacing:3.469200px;}
.ws63{word-spacing:3.528000px;}
.ws5f{word-spacing:3.586800px;}
.ws3c{word-spacing:3.645600px;}
.wsd9{word-spacing:3.704400px;}
.ws3d{word-spacing:3.763200px;}
.ws5e{word-spacing:3.822000px;}
.ws31{word-spacing:3.880800px;}
.ws16{word-spacing:3.939600px;}
.ws96{word-spacing:3.998400px;}
.ws53{word-spacing:4.174800px;}
.ws7f{word-spacing:4.233600px;}
.wsa3{word-spacing:4.292400px;}
.ws25{word-spacing:4.351200px;}
.ws15{word-spacing:4.410000px;}
.wsa7{word-spacing:4.468800px;}
.ws3f{word-spacing:4.527600px;}
.wsca{word-spacing:4.586400px;}
.ws4a{word-spacing:4.645200px;}
.ws1c{word-spacing:4.704000px;}
.ws38{word-spacing:4.762800px;}
.wsc4{word-spacing:4.880400px;}
.wsdb{word-spacing:4.998000px;}
.ws90{word-spacing:5.056800px;}
.ws7e{word-spacing:5.174400px;}
.wscd{word-spacing:5.350800px;}
.ws40{word-spacing:5.409600px;}
.ws48{word-spacing:5.527200px;}
.wsa6{word-spacing:5.586000px;}
.ws65{word-spacing:5.703600px;}
.wsd8{word-spacing:5.762400px;}
.ws5a{word-spacing:5.997600px;}
.ws60{word-spacing:6.174000px;}
.ws95{word-spacing:6.232800px;}
.ws1e{word-spacing:6.468000px;}
.ws4b{word-spacing:6.585600px;}
.ws9f{word-spacing:6.644400px;}
.ws91{word-spacing:6.703200px;}
.ws27{word-spacing:6.762000px;}
.wsd4{word-spacing:7.056000px;}
.ws9a{word-spacing:7.114800px;}
.ws83{word-spacing:7.232400px;}
.ws94{word-spacing:7.350000px;}
.ws3e{word-spacing:7.408800px;}
.wsa8{word-spacing:7.467600px;}
.ws19{word-spacing:7.526400px;}
.wsec{word-spacing:7.585200px;}
.wsdf{word-spacing:7.644000px;}
.ws8a{word-spacing:7.702800px;}
.ws58{word-spacing:7.820400px;}
.ws49{word-spacing:7.938000px;}
.ws26{word-spacing:7.996800px;}
.ws99{word-spacing:8.055600px;}
.ws36{word-spacing:8.114400px;}
.ws7d{word-spacing:8.232000px;}
.ws68{word-spacing:8.290800px;}
.ws93{word-spacing:8.349600px;}
.ws54{word-spacing:8.408400px;}
.ws87{word-spacing:8.467200px;}
.ws7b{word-spacing:8.526000px;}
.ws32{word-spacing:8.643600px;}
.ws9c{word-spacing:8.702400px;}
.wsd0{word-spacing:8.937600px;}
.ws71{word-spacing:8.996400px;}
.ws59{word-spacing:9.172800px;}
.ws18{word-spacing:9.231600px;}
.ws41{word-spacing:9.349200px;}
.wsef{word-spacing:9.408000px;}
.ws23{word-spacing:9.525600px;}
.wse1{word-spacing:9.584400px;}
.ws5c{word-spacing:9.643200px;}
.ws35{word-spacing:9.702000px;}
.wsea{word-spacing:9.760800px;}
.wsce{word-spacing:9.819600px;}
.ws2e{word-spacing:9.937200px;}
.ws2f{word-spacing:10.113600px;}
.wsc7{word-spacing:10.466400px;}
.ws55{word-spacing:10.584000px;}
.ws6e{word-spacing:10.819200px;}
.ws70{word-spacing:10.936800px;}
.ws1b{word-spacing:11.054400px;}
.ws67{word-spacing:11.113200px;}
.wsc0{word-spacing:11.230800px;}
.ws2d{word-spacing:11.642400px;}
.ws24{word-spacing:11.701200px;}
.ws56{word-spacing:11.818800px;}
.ws3b{word-spacing:11.995200px;}
.ws61{word-spacing:12.054000px;}
.wscf{word-spacing:12.230400px;}
.wse8{word-spacing:12.289200px;}
.wsbe{word-spacing:12.465600px;}
.wsf2{word-spacing:12.583200px;}
.ws9e{word-spacing:12.642000px;}
.ws72{word-spacing:12.759600px;}
.ws64{word-spacing:12.818400px;}
.ws98{word-spacing:12.877200px;}
.ws50{word-spacing:13.171200px;}
.wsee{word-spacing:13.230000px;}
.ws8d{word-spacing:13.406400px;}
.ws33{word-spacing:13.641600px;}
.ws5d{word-spacing:13.700400px;}
.wsbb{word-spacing:13.759200px;}
.wsed{word-spacing:13.818000px;}
.wsf1{word-spacing:13.935600px;}
.ws34{word-spacing:14.170800px;}
.wse7{word-spacing:14.229600px;}
.wsa4{word-spacing:14.347200px;}
.ws21{word-spacing:14.464800px;}
.wsa0{word-spacing:14.582400px;}
.ws81{word-spacing:14.758800px;}
.ws30{word-spacing:15.111600px;}
.ws9d{word-spacing:15.229200px;}
.ws22{word-spacing:15.523200px;}
.wsbc{word-spacing:15.640800px;}
.ws7a{word-spacing:15.758400px;}
.ws28{word-spacing:15.993600px;}
.ws17{word-spacing:16.052400px;}
.ws92{word-spacing:16.346400px;}
.ws8e{word-spacing:16.758000px;}
.ws3a{word-spacing:16.875600px;}
.wscb{word-spacing:17.875200px;}
.wsc6{word-spacing:17.934000px;}
.ws1a{word-spacing:17.992800px;}
.wsda{word-spacing:18.286800px;}
.wsc9{word-spacing:19.051200px;}
.wse0{word-spacing:19.227600px;}
.wsa2{word-spacing:20.227200px;}
.ws85{word-spacing:21.050400px;}
.ws6d{word-spacing:21.109200px;}
.ws8f{word-spacing:21.697200px;}
.ws4e{word-spacing:21.991200px;}
.wsbd{word-spacing:22.579200px;}
.ws7c{word-spacing:23.049600px;}
.wsde{word-spacing:23.520000px;}
.wscc{word-spacing:23.990400px;}
.ws20{word-spacing:27.518400px;}
.wsf0{word-spacing:28.576800px;}
.ws69{word-spacing:32.457600px;}
.ws86{word-spacing:33.927600px;}
.ws57{word-spacing:34.515600px;}
.wsd7{word-spacing:36.573600px;}
.ws6a{word-spacing:36.691200px;}
.wsac{word-spacing:57.124447px;}
.wsad{word-spacing:85.558886px;}
.wsaf{word-spacing:105.494938px;}
.ws75{word-spacing:227.088000px;}
.ws76{word-spacing:239.808000px;}
.ws78{word-spacing:248.832000px;}
.ws79{word-spacing:272.256000px;}
.wsb8{word-spacing:344.356782px;}
.wsc3{word-spacing:502.511983px;}
.wsba{word-spacing:573.839982px;}
.wsb9{word-spacing:597.263982px;}
.wsc2{word-spacing:931.679992px;}
.wsb7{word-spacing:1121.231963px;}
._23{margin-left:-136.101888px;}
._24{margin-left:-119.935795px;}
._f{margin-left:-43.159200px;}
._16{margin-left:-26.890821px;}
._17{margin-left:-20.058000px;}
._20{margin-left:-16.692326px;}
._13{margin-left:-14.582400px;}
._4{margin-left:-12.528041px;}
._38{margin-left:-10.927200px;}
._10{margin-left:-8.878800px;}
._15{margin-left:-7.365480px;}
._7{margin-left:-5.640000px;}
._19{margin-left:-4.512000px;}
._6{margin-left:-3.480000px;}
._a{margin-left:-2.454000px;}
._3{margin-left:-1.440000px;}
._0{width:1.420800px;}
._2{width:2.592000px;}
._1{width:4.032000px;}
._39{width:5.350800px;}
._c{width:6.409191px;}
._b{width:7.418400px;}
._d{width:8.590680px;}
._e{width:10.339200px;}
._14{width:12.135720px;}
._18{width:13.607640px;}
._8{width:14.640000px;}
._9{width:17.040000px;}
._12{width:19.521600px;}
._4c{width:23.052000px;}
._11{width:28.518000px;}
._5{width:37.309177px;}
._4b{width:45.012000px;}
._1b{width:68.591990px;}
._1a{width:79.968000px;}
._22{width:95.079629px;}
._1c{width:122.688000px;}
._25{width:126.358238px;}
._21{width:136.293581px;}
._1e{width:176.544000px;}
._43{width:224.952005px;}
._3b{width:226.151960px;}
._3a{width:229.219183px;}
._1d{width:247.680000px;}
._3e{width:249.119987px;}
._48{width:257.327983px;}
._40{width:281.711987px;}
._46{width:306.863960px;}
._28{width:321.407982px;}
._27{width:344.831982px;}
._32{width:368.255982px;}
._41{width:382.607960px;}
._35{width:393.311982px;}
._45{width:397.343960px;}
._44{width:404.399987px;}
._42{width:408.623987px;}
._37{width:416.735982px;}
._47{width:444.911987px;}
._3c{width:460.271987px;}
._1f{width:471.024000px;}
._34{width:472.153159px;}
._3d{width:489.599983px;}
._36{width:495.317959px;}
._3f{width:513.023983px;}
._49{width:572.471985px;}
._30{width:584.351982px;}
._26{width:615.887959px;}
._33{width:669.503959px;}
._31{width:687.551959px;}
._29{width:701.395159px;}
._4a{width:1101.907128px;}
._2f{width:1248.431959px;}
._2d{width:1262.501959px;}
._2c{width:1266.677959px;}
._2b{width:1276.805959px;}
._2a{width:1286.933959px;}
._2e{width:1288.439959px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:29.400000px;}
.fsa{font-size:31.500000px;}
.fs10{font-size:33.600000px;}
.fsd{font-size:41.160000px;}
.fs7{font-size:42.000000px;}
.fsb{font-size:45.000000px;}
.fs4{font-size:46.199999px;}
.fs0{font-size:48.000000px;}
.fse{font-size:54.000000px;}
.fsc{font-size:55.199999px;}
.fs8{font-size:58.800000px;}
.fs6{font-size:60.000000px;}
.fs5{font-size:61.800000px;}
.fs11{font-size:63.897600px;}
.fs3{font-size:66.000000px;}
.fs9{font-size:74.579400px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y10d{bottom:4.992599px;}
.y3b{bottom:5.053801px;}
.y3a{bottom:27.427826px;}
.y1f{bottom:75.796800px;}
.y1e{bottom:87.798300px;}
.y1d{bottom:99.799800px;}
.y1a7{bottom:100.662003px;}
.ya7{bottom:100.968752px;}
.ydb{bottom:100.975952px;}
.yf6{bottom:105.045444px;}
.y16c{bottom:105.082352px;}
.y77{bottom:106.628095px;}
.y10e{bottom:108.694954px;}
.y113{bottom:109.095595px;}
.y118{bottom:109.124992px;}
.y1c{bottom:111.801300px;}
.y1e6{bottom:112.842773px;}
.y1a6{bottom:114.162003px;}
.ya6{bottom:118.961552px;}
.yda{bottom:118.968752px;}
.yf5{bottom:122.047497px;}
.y16b{bottom:122.084255px;}
.y1b{bottom:123.802800px;}
.y10b{bottom:123.844505px;}
.y76{bottom:124.620895px;}
.y1e5{bottom:126.342773px;}
.y112{bottom:127.088395px;}
.y117{bottom:127.117792px;}
.y1a5{bottom:127.662003px;}
.y228{bottom:127.842773px;}
.yf4{bottom:134.849396px;}
.y16a{bottom:134.886303px;}
.y1a{bottom:135.804300px;}
.yd9{bottom:136.961552px;}
.ya5{bottom:136.983140px;}
.y1e4{bottom:139.842773px;}
.y227{bottom:141.342773px;}
.y75{bottom:142.620895px;}
.y111{bottom:145.081195px;}
.y116{bottom:145.110592px;}
.y19{bottom:147.805800px;}
.y1e3{bottom:153.342773px;}
.y1a4{bottom:154.662003px;}
.y226{bottom:154.842773px;}
.ya4{bottom:154.975940px;}
.yd8{bottom:154.983140px;}
.yfc{bottom:157.187244px;}
.y17d{bottom:157.374298px;}
.y74{bottom:160.656895px;}
.y110{bottom:163.073995px;}
.y115{bottom:163.103392px;}
.y103{bottom:165.897594px;}
.y1e2{bottom:166.842773px;}
.y225{bottom:168.342773px;}
.ya3{bottom:172.968740px;}
.yd7{bottom:172.975940px;}
.yfb{bottom:175.412395px;}
.y17c{bottom:175.599152px;}
.y73{bottom:178.649695px;}
.y1e1{bottom:180.342773px;}
.y10f{bottom:181.066795px;}
.y114{bottom:181.096192px;}
.y224{bottom:181.842773px;}
.y40{bottom:185.680641px;}
.y1a3{bottom:190.662003px;}
.yd6{bottom:190.968740px;}
.y102{bottom:191.367599px;}
.yfa{bottom:193.557756px;}
.y17b{bottom:193.749298px;}
.y1e0{bottom:193.842773px;}
.y223{bottom:195.342773px;}
.y37{bottom:196.050296px;}
.y72{bottom:196.642495px;}
.y3f{bottom:199.180641px;}
.y1a2{bottom:204.162003px;}
.y1df{bottom:207.342773px;}
.y222{bottom:208.842773px;}
.yd5{bottom:208.961540px;}
.ya2{bottom:209.718740px;}
.yf9{bottom:211.713756px;}
.y17a{bottom:211.899147px;}
.y36{bottom:214.043096px;}
.y71{bottom:214.635295px;}
.y101{bottom:215.987091px;}
.y3e{bottom:217.180641px;}
.y1a1{bottom:217.662003px;}
.y1de{bottom:220.842773px;}
.y221{bottom:222.342773px;}
.yd4{bottom:226.968740px;}
.ya1{bottom:227.711540px;}
.y104{bottom:228.245678px;}
.y11e{bottom:228.474609px;}
.yf8{bottom:229.857756px;}
.y179{bottom:230.049156px;}
.y35{bottom:232.035896px;}
.y70{bottom:232.628095px;}
.y3d{bottom:234.055641px;}
.y1dd{bottom:234.342773px;}
.y220{bottom:235.842773px;}
.y1a0{bottom:244.662003px;}
.yd3{bottom:244.961540px;}
.y11d{bottom:245.476500px;}
.ya0{bottom:245.768980px;}
.y1dc{bottom:247.842773px;}
.y178{bottom:248.199303px;}
.y21f{bottom:249.342773px;}
.y34{bottom:250.093519px;}
.y6f{bottom:250.620895px;}
.yf7{bottom:256.749756px;}
.y19f{bottom:258.162003px;}
.y3c{bottom:259.930641px;}
.y1db{bottom:261.342773px;}
.y105{bottom:262.382970px;}
.y21e{bottom:262.842773px;}
.yd2{bottom:262.975803px;}
.y9f{bottom:263.761780px;}
.y12f{bottom:263.764503px;}
.y177{bottom:266.349152px;}
.y33{bottom:268.086319px;}
.y6e{bottom:268.620895px;}
.y19e{bottom:271.662003px;}
.y1da{bottom:274.842773px;}
.y21d{bottom:276.342773px;}
.yd1{bottom:280.968603px;}
.yf3{bottom:281.062500px;}
.y9e{bottom:281.754580px;}
.y12e{bottom:281.989494px;}
.y176{bottom:284.499298px;}
.y32{bottom:286.079119px;}
.y6d{bottom:286.642495px;}
.y1d9{bottom:288.342773px;}
.y21c{bottom:289.842773px;}
.y106{bottom:296.504289px;}
.y19d{bottom:298.662003px;}
.yd0{bottom:298.961403px;}
.y9d{bottom:299.747380px;}
.y12d{bottom:300.139503px;}
.y1d8{bottom:301.842773px;}
.y175{bottom:302.649147px;}
.y28{bottom:303.274194px;}
.y21b{bottom:303.342773px;}
.y31{bottom:304.071919px;}
.y6c{bottom:304.635295px;}
.y19c{bottom:312.162003px;}
.y1d7{bottom:315.342773px;}
.y21a{bottom:316.842773px;}
.ycf{bottom:316.961403px;}
.y9c{bottom:317.740180px;}
.y12c{bottom:318.289490px;}
.y174{bottom:320.799156px;}
.y27{bottom:321.266994px;}
.y30{bottom:322.064719px;}
.y6b{bottom:322.628095px;}
.y19b{bottom:325.662003px;}
.y1d6{bottom:328.842773px;}
.y219{bottom:330.342773px;}
.y107{bottom:330.641582px;}
.y9b{bottom:335.732980px;}
.y12b{bottom:336.445508px;}
.y173{bottom:338.967170px;}
.y19a{bottom:339.162003px;}
.y26{bottom:339.259794px;}
.y2f{bottom:340.057519px;}
.y6a{bottom:340.620895px;}
.yf2{bottom:340.664095px;}
.y1d5{bottom:342.342773px;}
.y10c{bottom:343.261345px;}
.y218{bottom:343.842773px;}
.y25b{bottom:348.342750px;}
.y199{bottom:352.662003px;}
.y9a{bottom:353.725780px;}
.y12a{bottom:354.589508px;}
.yce{bottom:355.791161px;}
.y1d4{bottom:355.842773px;}
.y172{bottom:357.111170px;}
.y25{bottom:357.252594px;}
.y217{bottom:357.342773px;}
.y2e{bottom:358.050319px;}
.y69{bottom:358.620895px;}
.yf1{bottom:358.656895px;}
.y25a{bottom:361.842750px;}
.y108{bottom:364.762900px;}
.y198{bottom:366.162003px;}
.y1d3{bottom:369.342773px;}
.y216{bottom:370.842773px;}
.y99{bottom:371.718580px;}
.y129{bottom:372.763508px;}
.ycd{bottom:373.805538px;}
.y171{bottom:375.255170px;}
.y24{bottom:375.266994px;}
.y259{bottom:375.342750px;}
.y2d{bottom:376.043119px;}
.yf0{bottom:376.649695px;}
.y68{bottom:376.664095px;}
.y197{bottom:379.662003px;}
.y1d2{bottom:382.842773px;}
.y215{bottom:384.342773px;}
.y98{bottom:389.711380px;}
.y128{bottom:390.907508px;}
.ycc{bottom:391.798338px;}
.y196{bottom:393.162003px;}
.y23{bottom:393.259794px;}
.y170{bottom:393.399170px;}
.y2c{bottom:394.035919px;}
.yef{bottom:394.642495px;}
.y67{bottom:394.656895px;}
.y1d1{bottom:396.342773px;}
.y214{bottom:397.842773px;}
.y109{bottom:398.884218px;}
.y97{bottom:407.711380px;}
.y127{bottom:409.051508px;}
.ycb{bottom:409.791138px;}
.y1d0{bottom:409.842773px;}
.y22{bottom:411.252594px;}
.y258{bottom:411.342756px;}
.y213{bottom:411.342773px;}
.y16f{bottom:411.550789px;}
.y2b{bottom:412.068894px;}
.yee{bottom:412.635295px;}
.y66{bottom:412.649695px;}
.y195{bottom:420.162003px;}
.y1cf{bottom:423.342773px;}
.y257{bottom:424.842756px;}
.y212{bottom:424.842773px;}
.y126{bottom:427.195508px;}
.yca{bottom:427.827138px;}
.y21{bottom:429.252594px;}
.y2a{bottom:430.061694px;}
.yed{bottom:430.628095px;}
.y65{bottom:430.642495px;}
.y10a{bottom:433.021511px;}
.y194{bottom:433.662003px;}
.y1ce{bottom:436.842773px;}
.y256{bottom:438.342756px;}
.y211{bottom:438.342773px;}
.y16e{bottom:438.442789px;}
.y125{bottom:445.339508px;}
.yc9{bottom:445.819938px;}
.y20{bottom:447.252594px;}
.y29{bottom:448.054494px;}
.yec{bottom:448.620895px;}
.y64{bottom:448.635295px;}
.y1cd{bottom:450.342773px;}
.y96{bottom:451.420068px;}
.y255{bottom:451.842756px;}
.y210{bottom:451.842773px;}
.y193{bottom:460.676403px;}
.y16d{bottom:462.286789px;}
.y124{bottom:463.495481px;}
.yc8{bottom:463.812738px;}
.y1cc{bottom:463.842773px;}
.y254{bottom:465.342756px;}
.y20f{bottom:465.342773px;}
.y63{bottom:466.628095px;}
.y95{bottom:469.412868px;}
.y1cb{bottom:477.342773px;}
.y192{bottom:478.669203px;}
.y253{bottom:478.842756px;}
.y20e{bottom:478.842773px;}
.y123{bottom:481.639481px;}
.yc7{bottom:481.805538px;}
.y62{bottom:484.620895px;}
.y169{bottom:486.599396px;}
.y94{bottom:487.405668px;}
.y1ca{bottom:490.842773px;}
.y252{bottom:492.342756px;}
.y20d{bottom:492.342773px;}
.y191{bottom:496.662003px;}
.y18{bottom:499.715057px;}
.y122{bottom:499.789490px;}
.yc6{bottom:499.798338px;}
.y61{bottom:502.671295px;}
.yeb{bottom:502.707295px;}
.y1c9{bottom:504.342773px;}
.y93{bottom:505.398468px;}
.y251{bottom:505.842756px;}
.y20c{bottom:505.842773px;}
.y190{bottom:514.676403px;}
.yc5{bottom:517.791138px;}
.y1c8{bottom:517.842773px;}
.y121{bottom:517.941017px;}
.y250{bottom:519.342756px;}
.y20b{bottom:519.342773px;}
.y60{bottom:520.664095px;}
.yea{bottom:520.700095px;}
.y17{bottom:522.215057px;}
.y92{bottom:523.391268px;}
.y1c7{bottom:531.342773px;}
.y18f{bottom:532.669203px;}
.y24f{bottom:532.842756px;}
.y20a{bottom:532.842773px;}
.yc4{bottom:535.791138px;}
.y5f{bottom:538.656895px;}
.ye9{bottom:538.692895px;}
.y14b{bottom:539.766730px;}
.y168{bottom:539.773930px;}
.y16{bottom:540.215057px;}
.y91{bottom:541.384068px;}
.y120{bottom:544.833017px;}
.y1c6{bottom:544.842773px;}
.y24e{bottom:546.342756px;}
.y209{bottom:546.342773px;}
.y18e{bottom:550.662003px;}
.yc3{bottom:553.863138px;}
.y5e{bottom:556.649695px;}
.ye8{bottom:556.685695px;}
.y14a{bottom:557.759530px;}
.y167{bottom:557.766730px;}
.y1c5{bottom:558.342773px;}
.y90{bottom:559.376868px;}
.y24d{bottom:559.842756px;}
.y208{bottom:559.842773px;}
.y100{bottom:560.544022px;}
.y15{bottom:562.715057px;}
.y18d{bottom:568.662003px;}
.y11f{bottom:568.677017px;}
.y1c4{bottom:571.842773px;}
.yc2{bottom:571.855938px;}
.y24c{bottom:573.342756px;}
.y207{bottom:573.342773px;}
.y5d{bottom:574.642495px;}
.ye7{bottom:574.678495px;}
.yff{bottom:575.544022px;}
.y149{bottom:575.752330px;}
.y166{bottom:575.759530px;}
.y8f{bottom:577.369668px;}
.y14{bottom:580.715057px;}
.y1c3{bottom:585.342773px;}
.y24b{bottom:586.842756px;}
.y206{bottom:586.842773px;}
.yc1{bottom:589.848738px;}
.y5c{bottom:592.635295px;}
.ye6{bottom:592.671295px;}
.y11c{bottom:592.877243px;}
.y148{bottom:593.745130px;}
.y165{bottom:593.752330px;}
.y8e{bottom:595.362468px;}
.y13{bottom:598.715057px;}
.y1c2{bottom:598.842773px;}
.y24a{bottom:600.342756px;}
.y205{bottom:600.342773px;}
.yc0{bottom:607.841538px;}
.y5b{bottom:610.628095px;}
.ye5{bottom:610.664095px;}
.y147{bottom:611.737930px;}
.y164{bottom:611.745130px;}
.y1c1{bottom:612.342773px;}
.y8d{bottom:613.355268px;}
.y249{bottom:613.842756px;}
.y204{bottom:613.842773px;}
.y12{bottom:616.715057px;}
.ybf{bottom:625.834338px;}
.y1c0{bottom:625.842773px;}
.y248{bottom:627.342756px;}
.y203{bottom:627.342773px;}
.y5a{bottom:628.620895px;}
.ye4{bottom:628.656895px;}
.y163{bottom:629.737930px;}
.y18c{bottom:629.759530px;}
.y146{bottom:629.853176px;}
.y8c{bottom:631.348068px;}
.y11{bottom:634.715057px;}
.y1bf{bottom:639.342773px;}
.y247{bottom:640.842756px;}
.y202{bottom:640.842773px;}
.ybe{bottom:643.827138px;}
.y11b{bottom:645.192764px;}
.y59{bottom:646.642495px;}
.ye3{bottom:646.649695px;}
.y18b{bottom:647.752330px;}
.y162{bottom:647.809976px;}
.y145{bottom:647.845976px;}
.y8b{bottom:649.348068px;}
.y1be{bottom:652.842773px;}
.y246{bottom:654.342756px;}
.y201{bottom:654.342773px;}
.y10{bottom:657.215057px;}
.y11a{bottom:660.192764px;}
.ybd{bottom:661.819938px;}
.y58{bottom:664.635295px;}
.ye2{bottom:664.642495px;}
.y18a{bottom:665.745130px;}
.y161{bottom:665.802776px;}
.y144{bottom:665.838776px;}
.y1bd{bottom:666.342773px;}
.y245{bottom:667.842756px;}
.y200{bottom:667.842773px;}
.y119{bottom:675.192764px;}
.yf{bottom:675.215057px;}
.ybc{bottom:679.812738px;}
.y1bc{bottom:679.842773px;}
.y244{bottom:681.342756px;}
.y1ff{bottom:681.342773px;}
.y57{bottom:682.628095px;}
.ye1{bottom:682.635295px;}
.y189{bottom:683.737930px;}
.y160{bottom:683.795576px;}
.y143{bottom:683.831576px;}
.y8a{bottom:693.013190px;}
.ye{bottom:693.215057px;}
.y1bb{bottom:693.342773px;}
.y243{bottom:694.842756px;}
.y1fe{bottom:694.842773px;}
.ybb{bottom:697.805538px;}
.y56{bottom:700.620895px;}
.ye0{bottom:700.628095px;}
.y188{bottom:701.752330px;}
.y15f{bottom:701.788376px;}
.y142{bottom:701.824376px;}
.y1ba{bottom:706.842773px;}
.y242{bottom:708.342756px;}
.y1fd{bottom:708.342773px;}
.y89{bottom:711.005990px;}
.yd{bottom:711.215057px;}
.yba{bottom:715.798338px;}
.ydf{bottom:718.620895px;}
.y55{bottom:718.628095px;}
.y187{bottom:719.745130px;}
.y15e{bottom:719.781176px;}
.y141{bottom:719.817176px;}
.y1b9{bottom:720.342773px;}
.y241{bottom:721.842756px;}
.y1fc{bottom:721.842773px;}
.y88{bottom:728.998790px;}
.yc{bottom:733.715057px;}
.yb9{bottom:733.791138px;}
.y1b8{bottom:733.842773px;}
.y240{bottom:735.342756px;}
.y1fb{bottom:735.342773px;}
.y54{bottom:736.620895px;}
.yde{bottom:736.642541px;}
.y186{bottom:737.737930px;}
.y15d{bottom:737.773976px;}
.y140{bottom:737.809976px;}
.y87{bottom:746.991590px;}
.y1b7{bottom:747.342773px;}
.y23f{bottom:748.842756px;}
.y1fa{bottom:748.842773px;}
.yb{bottom:751.715057px;}
.yb8{bottom:751.798338px;}
.y53{bottom:754.635341px;}
.y15c{bottom:755.766776px;}
.y185{bottom:755.788376px;}
.y13f{bottom:755.802776px;}
.y1b6{bottom:760.842773px;}
.y23e{bottom:762.342756px;}
.y1f9{bottom:762.342773px;}
.y86{bottom:764.984390px;}
.ya{bottom:769.715057px;}
.yb7{bottom:769.791138px;}
.y52{bottom:772.628141px;}
.y15b{bottom:773.759576px;}
.y184{bottom:773.781176px;}
.y13e{bottom:773.795576px;}
.y1b5{bottom:774.342773px;}
.y23d{bottom:775.842756px;}
.y1f8{bottom:775.842773px;}
.y85{bottom:782.991636px;}
.yb6{bottom:787.819938px;}
.y23c{bottom:789.342756px;}
.y1f7{bottom:789.342773px;}
.y51{bottom:790.620941px;}
.y15a{bottom:791.752376px;}
.y183{bottom:791.773976px;}
.y13d{bottom:791.788376px;}
.y9{bottom:792.215057px;}
.y84{bottom:800.984436px;}
.y23b{bottom:802.842756px;}
.y1f6{bottom:802.842773px;}
.yb5{bottom:805.812738px;}
.y50{bottom:808.649741px;}
.y159{bottom:809.745176px;}
.y182{bottom:809.766776px;}
.y13c{bottom:809.781176px;}
.y23a{bottom:816.342756px;}
.y1f5{bottom:816.342773px;}
.y83{bottom:818.984436px;}
.yb4{bottom:823.805538px;}
.y4f{bottom:826.642541px;}
.y158{bottom:827.737976px;}
.y181{bottom:827.759576px;}
.y13b{bottom:827.773976px;}
.y239{bottom:829.842756px;}
.y1f4{bottom:829.842773px;}
.y82{bottom:836.984436px;}
.yb3{bottom:841.798338px;}
.y238{bottom:843.342756px;}
.y1b4{bottom:843.342773px;}
.y4e{bottom:844.635341px;}
.yfe{bottom:845.592773px;}
.y157{bottom:845.752376px;}
.y13a{bottom:845.766776px;}
.y237{bottom:856.842756px;}
.y1f3{bottom:856.842773px;}
.yb2{bottom:859.791138px;}
.yfd{bottom:860.592773px;}
.y4d{bottom:862.628141px;}
.y156{bottom:863.745176px;}
.y139{bottom:863.759576px;}
.y8{bottom:864.552612px;}
.y236{bottom:870.342756px;}
.y1b3{bottom:870.342773px;}
.yb1{bottom:877.791138px;}
.y4c{bottom:880.620941px;}
.y81{bottom:880.685995px;}
.y155{bottom:881.737976px;}
.y138{bottom:881.752376px;}
.y235{bottom:883.842756px;}
.y1b2{bottom:883.842773px;}
.y234{bottom:897.342756px;}
.y1f2{bottom:897.342773px;}
.y4b{bottom:898.635341px;}
.y80{bottom:898.678795px;}
.y137{bottom:899.745176px;}
.y154{bottom:899.759576px;}
.y7{bottom:900.577528px;}
.y1b1{bottom:901.842773px;}
.y1b0{bottom:910.841990px;}
.y233{bottom:910.842756px;}
.y1f1{bottom:910.842773px;}
.y4a{bottom:916.628141px;}
.yb0{bottom:916.642541px;}
.y7f{bottom:916.671595px;}
.y136{bottom:917.737976px;}
.y153{bottom:917.752376px;}
.y232{bottom:924.342756px;}
.y1f0{bottom:924.342773px;}
.y49{bottom:934.620941px;}
.yaf{bottom:934.635341px;}
.y7e{bottom:934.664395px;}
.y135{bottom:935.737976px;}
.y152{bottom:935.745176px;}
.y180{bottom:935.781176px;}
.y1af{bottom:937.841990px;}
.y231{bottom:937.842756px;}
.y1ef{bottom:937.842773px;}
.y6{bottom:939.565528px;}
.y1ae{bottom:951.341990px;}
.y230{bottom:951.342756px;}
.y1ee{bottom:951.342773px;}
.yae{bottom:952.628141px;}
.y48{bottom:952.642541px;}
.y7d{bottom:952.657195px;}
.y151{bottom:953.737976px;}
.y17f{bottom:953.773976px;}
.y1ad{bottom:964.841990px;}
.y22f{bottom:964.842756px;}
.y1ed{bottom:964.842773px;}
.yad{bottom:970.620941px;}
.y47{bottom:970.635341px;}
.y7c{bottom:970.649995px;}
.y134{bottom:971.737976px;}
.y17e{bottom:971.766776px;}
.y150{bottom:971.799720px;}
.y1ac{bottom:978.341990px;}
.y22e{bottom:978.342756px;}
.y1ec{bottom:978.342773px;}
.y5{bottom:978.553528px;}
.yac{bottom:988.620941px;}
.y46{bottom:988.628141px;}
.y7b{bottom:988.642795px;}
.y133{bottom:989.759576px;}
.y14f{bottom:989.792520px;}
.y1ab{bottom:991.841990px;}
.y22d{bottom:991.842756px;}
.y1eb{bottom:991.842773px;}
.y1aa{bottom:1005.341990px;}
.y22c{bottom:1005.342756px;}
.y1ea{bottom:1005.342773px;}
.y45{bottom:1006.620941px;}
.yab{bottom:1006.635341px;}
.y7a{bottom:1006.635595px;}
.y132{bottom:1007.752376px;}
.y14e{bottom:1007.785320px;}
.y22b{bottom:1018.842756px;}
.y1e9{bottom:1018.842773px;}
.y44{bottom:1024.628141px;}
.y79{bottom:1024.628395px;}
.ydd{bottom:1024.635732px;}
.y131{bottom:1025.745176px;}
.y14d{bottom:1025.778120px;}
.y1a9{bottom:1032.341990px;}
.y22a{bottom:1032.342756px;}
.y1e8{bottom:1032.342773px;}
.y4{bottom:1033.362579px;}
.y38{bottom:1035.750183px;}
.y43{bottom:1042.620941px;}
.y78{bottom:1042.621195px;}
.ydc{bottom:1042.628532px;}
.y130{bottom:1043.737976px;}
.y14c{bottom:1043.770920px;}
.y1a8{bottom:1045.841990px;}
.y229{bottom:1045.842756px;}
.y1e7{bottom:1045.842773px;}
.y39{bottom:1094.398499px;}
.y3{bottom:1097.297079px;}
.y2{bottom:1112.297079px;}
.ya8{bottom:1126.524628px;}
.y41{bottom:1126.524719px;}
.yaa{bottom:1126.756989px;}
.y1{bottom:1126.925079px;}
.ya9{bottom:1127.300079px;}
.y42{bottom:1127.304719px;}
.h10{height:27.814500px;}
.h16{height:27.988800px;}
.hc{height:37.086000px;}
.h11{height:39.735000px;}
.h25{height:39.984000px;}
.h15{height:40.026000px;}
.hb{height:41.538000px;}
.h18{height:42.384000px;}
.h29{height:42.840000px;}
.he{height:43.404000px;}
.h27{height:43.785000px;}
.h1d{height:44.281037px;}
.h4{height:45.696000px;}
.h3{height:45.744000px;}
.h28{height:45.814500px;}
.h17{height:46.704000px;}
.h2{height:47.232000px;}
.h1c{height:47.472000px;}
.h22{height:48.772727px;}
.h26{height:48.797313px;}
.h23{height:48.844745px;}
.h21{height:48.844837px;}
.h1f{height:48.862800px;}
.h1a{height:48.868232px;}
.h24{height:48.868782px;}
.h1b{height:48.868822px;}
.h20{height:48.868873px;}
.h19{height:48.886777px;}
.ha{height:52.980000px;}
.h14{height:53.406000px;}
.h12{height:53.709599px;}
.h13{height:54.625200px;}
.hd{height:55.860000px;}
.hf{height:57.053241px;}
.h9{height:58.380000px;}
.h8{height:61.120200px;}
.h7{height:67.194379px;}
.h5{height:77.142000px;}
.h6{height:137.088000px;}
.h1e{height:356.296509px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w2{width:198.529495px;}
.w3{width:722.835022px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:48.448242px;}
.x1{left:84.933002px;}
.x2{left:92.734348px;}
.x3{left:94.683150px;}
.xb{left:97.034552px;}
.x19{left:107.539352px;}
.x13{left:155.595006px;}
.x10{left:178.391853px;}
.x12{left:241.391592px;}
.x11{left:249.490613px;}
.x14{left:261.169797px;}
.x4{left:270.817497px;}
.xf{left:281.355743px;}
.x17{left:360.301941px;}
.x15{left:447.397339px;}
.x5{left:457.092894px;}
.xc{left:467.582394px;}
.x6{left:469.081794px;}
.x18{left:479.586594px;}
.xd{left:487.089294px;}
.x16{left:501.658950px;}
.x8{left:609.203979px;}
.xe{left:615.528900px;}
.x7{left:694.929886px;}
.xa{left:753.380081px;}
@media print{
.v3{vertical-align:-16.000000pt;}
.v5{vertical-align:-14.933838pt;}
.v7{vertical-align:-1.533542pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.322667pt;}
.v8{vertical-align:16.000000pt;}
.v6{vertical-align:17.082646pt;}
.v4{vertical-align:20.854724pt;}
.v2{vertical-align:23.466471pt;}
.ls17{letter-spacing:-4.547200pt;}
.lsb{letter-spacing:-1.922491pt;}
.ls6{letter-spacing:-1.657320pt;}
.ls5{letter-spacing:-1.392149pt;}
.lsf{letter-spacing:-1.109333pt;}
.ls3{letter-spacing:-0.933333pt;}
.ls4{letter-spacing:-0.861806pt;}
.lsd{letter-spacing:-0.795514pt;}
.ls11{letter-spacing:-0.283989pt;}
.ls8{letter-spacing:-0.198878pt;}
.lsa{letter-spacing:-0.132586pt;}
.ls9{letter-spacing:-0.066293pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000001pt;}
.ls18{letter-spacing:0.000063pt;}
.lse{letter-spacing:0.000088pt;}
.ls7{letter-spacing:1.325856pt;}
.lsc{letter-spacing:1.392149pt;}
.ls0{letter-spacing:4.853333pt;}
.ls14{letter-spacing:106.609596pt;}
.ls13{letter-spacing:120.979456pt;}
.ls15{letter-spacing:121.149844pt;}
.ls12{letter-spacing:135.349310pt;}
.ls10{letter-spacing:135.462912pt;}
.ls16{letter-spacing:135.519710pt;}
.wsb3{word-spacing:-148.356028pt;}
.wsae{word-spacing:-148.299230pt;}
.wsb5{word-spacing:-135.349310pt;}
.wsb0{word-spacing:-133.815774pt;}
.wsb2{word-spacing:-119.729885pt;}
.wsb1{word-spacing:-119.445914pt;}
.ws1{word-spacing:-18.858667pt;}
.wse{word-spacing:-18.628277pt;}
.ws9{word-spacing:-18.561984pt;}
.ws5{word-spacing:-17.236128pt;}
.wsb{word-spacing:-17.169835pt;}
.wsc{word-spacing:-17.103542pt;}
.wsa{word-spacing:-17.037250pt;}
.wsf{word-spacing:-16.440614pt;}
.ws6{word-spacing:-16.374322pt;}
.ws7{word-spacing:-15.843979pt;}
.ws8{word-spacing:-15.578808pt;}
.wsd{word-spacing:-15.313637pt;}
.ws2c{word-spacing:-12.387200pt;}
.wse5{word-spacing:-12.282667pt;}
.ws3{word-spacing:-11.096533pt;}
.ws4{word-spacing:-11.040000pt;}
.ws2b{word-spacing:-10.156800pt;}
.ws0{word-spacing:-9.045333pt;}
.ws2{word-spacing:-8.993600pt;}
.ws77{word-spacing:-8.832000pt;}
.wsf4{word-spacing:-8.760000pt;}
.wse6{word-spacing:-8.280000pt;}
.ws14{word-spacing:-7.242667pt;}
.wsf3{word-spacing:-7.080000pt;}
.ws10{word-spacing:-6.132000pt;}
.ws74{word-spacing:-5.861333pt;}
.ws97{word-spacing:-5.749333pt;}
.wsb6{word-spacing:-5.540267pt;}
.ws12{word-spacing:-5.013333pt;}
.wsaa{word-spacing:-4.010667pt;}
.wsc1{word-spacing:-1.792000pt;}
.ws29{word-spacing:-1.325856pt;}
.ws88{word-spacing:-0.679467pt;}
.ws8b{word-spacing:-0.627200pt;}
.wsc5{word-spacing:-0.574933pt;}
.ws9b{word-spacing:-0.522667pt;}
.ws4c{word-spacing:-0.470400pt;}
.wsbf{word-spacing:-0.313600pt;}
.wsa9{word-spacing:-0.209067pt;}
.ws13{word-spacing:-0.106667pt;}
.wsa5{word-spacing:-0.104533pt;}
.ws4f{word-spacing:-0.052267pt;}
.wsab{word-spacing:-0.042667pt;}
.ws73{word-spacing:-0.036587pt;}
.ws11{word-spacing:0.000000pt;}
.ws37{word-spacing:0.104533pt;}
.wsd6{word-spacing:0.156800pt;}
.ws39{word-spacing:0.209067pt;}
.ws6f{word-spacing:0.261333pt;}
.wsb4{word-spacing:0.283989pt;}
.ws66{word-spacing:0.418133pt;}
.wsd2{word-spacing:0.470400pt;}
.wse2{word-spacing:0.522667pt;}
.ws51{word-spacing:0.574933pt;}
.wsd1{word-spacing:0.784000pt;}
.ws8c{word-spacing:0.836267pt;}
.ws2a{word-spacing:0.861806pt;}
.ws46{word-spacing:0.993067pt;}
.ws80{word-spacing:1.045333pt;}
.wsa1{word-spacing:1.097600pt;}
.ws1d{word-spacing:1.149867pt;}
.ws5b{word-spacing:1.202133pt;}
.ws47{word-spacing:1.306667pt;}
.ws52{word-spacing:1.411200pt;}
.ws45{word-spacing:1.463467pt;}
.wsdc{word-spacing:1.568000pt;}
.wsd5{word-spacing:1.724800pt;}
.ws43{word-spacing:1.829333pt;}
.wse4{word-spacing:1.881600pt;}
.wse9{word-spacing:1.933867pt;}
.wse3{word-spacing:1.986133pt;}
.wsc8{word-spacing:2.038400pt;}
.ws6b{word-spacing:2.142933pt;}
.ws42{word-spacing:2.247467pt;}
.ws6c{word-spacing:2.299733pt;}
.ws84{word-spacing:2.404267pt;}
.wsdd{word-spacing:2.456533pt;}
.ws89{word-spacing:2.508800pt;}
.ws62{word-spacing:2.561067pt;}
.ws1f{word-spacing:2.613333pt;}
.wseb{word-spacing:2.665600pt;}
.ws82{word-spacing:2.874667pt;}
.ws44{word-spacing:2.979200pt;}
.wsd3{word-spacing:3.031467pt;}
.ws4d{word-spacing:3.083733pt;}
.ws63{word-spacing:3.136000pt;}
.ws5f{word-spacing:3.188267pt;}
.ws3c{word-spacing:3.240533pt;}
.wsd9{word-spacing:3.292800pt;}
.ws3d{word-spacing:3.345067pt;}
.ws5e{word-spacing:3.397333pt;}
.ws31{word-spacing:3.449600pt;}
.ws16{word-spacing:3.501867pt;}
.ws96{word-spacing:3.554133pt;}
.ws53{word-spacing:3.710933pt;}
.ws7f{word-spacing:3.763200pt;}
.wsa3{word-spacing:3.815467pt;}
.ws25{word-spacing:3.867733pt;}
.ws15{word-spacing:3.920000pt;}
.wsa7{word-spacing:3.972267pt;}
.ws3f{word-spacing:4.024533pt;}
.wsca{word-spacing:4.076800pt;}
.ws4a{word-spacing:4.129067pt;}
.ws1c{word-spacing:4.181333pt;}
.ws38{word-spacing:4.233600pt;}
.wsc4{word-spacing:4.338133pt;}
.wsdb{word-spacing:4.442667pt;}
.ws90{word-spacing:4.494933pt;}
.ws7e{word-spacing:4.599467pt;}
.wscd{word-spacing:4.756267pt;}
.ws40{word-spacing:4.808533pt;}
.ws48{word-spacing:4.913067pt;}
.wsa6{word-spacing:4.965333pt;}
.ws65{word-spacing:5.069867pt;}
.wsd8{word-spacing:5.122133pt;}
.ws5a{word-spacing:5.331200pt;}
.ws60{word-spacing:5.488000pt;}
.ws95{word-spacing:5.540267pt;}
.ws1e{word-spacing:5.749333pt;}
.ws4b{word-spacing:5.853867pt;}
.ws9f{word-spacing:5.906133pt;}
.ws91{word-spacing:5.958400pt;}
.ws27{word-spacing:6.010667pt;}
.wsd4{word-spacing:6.272000pt;}
.ws9a{word-spacing:6.324267pt;}
.ws83{word-spacing:6.428800pt;}
.ws94{word-spacing:6.533333pt;}
.ws3e{word-spacing:6.585600pt;}
.wsa8{word-spacing:6.637867pt;}
.ws19{word-spacing:6.690133pt;}
.wsec{word-spacing:6.742400pt;}
.wsdf{word-spacing:6.794667pt;}
.ws8a{word-spacing:6.846933pt;}
.ws58{word-spacing:6.951467pt;}
.ws49{word-spacing:7.056000pt;}
.ws26{word-spacing:7.108267pt;}
.ws99{word-spacing:7.160533pt;}
.ws36{word-spacing:7.212800pt;}
.ws7d{word-spacing:7.317333pt;}
.ws68{word-spacing:7.369600pt;}
.ws93{word-spacing:7.421867pt;}
.ws54{word-spacing:7.474133pt;}
.ws87{word-spacing:7.526400pt;}
.ws7b{word-spacing:7.578667pt;}
.ws32{word-spacing:7.683200pt;}
.ws9c{word-spacing:7.735467pt;}
.wsd0{word-spacing:7.944533pt;}
.ws71{word-spacing:7.996800pt;}
.ws59{word-spacing:8.153600pt;}
.ws18{word-spacing:8.205867pt;}
.ws41{word-spacing:8.310400pt;}
.wsef{word-spacing:8.362667pt;}
.ws23{word-spacing:8.467200pt;}
.wse1{word-spacing:8.519467pt;}
.ws5c{word-spacing:8.571733pt;}
.ws35{word-spacing:8.624000pt;}
.wsea{word-spacing:8.676267pt;}
.wsce{word-spacing:8.728533pt;}
.ws2e{word-spacing:8.833067pt;}
.ws2f{word-spacing:8.989867pt;}
.wsc7{word-spacing:9.303467pt;}
.ws55{word-spacing:9.408000pt;}
.ws6e{word-spacing:9.617067pt;}
.ws70{word-spacing:9.721600pt;}
.ws1b{word-spacing:9.826133pt;}
.ws67{word-spacing:9.878400pt;}
.wsc0{word-spacing:9.982933pt;}
.ws2d{word-spacing:10.348800pt;}
.ws24{word-spacing:10.401067pt;}
.ws56{word-spacing:10.505600pt;}
.ws3b{word-spacing:10.662400pt;}
.ws61{word-spacing:10.714667pt;}
.wscf{word-spacing:10.871467pt;}
.wse8{word-spacing:10.923733pt;}
.wsbe{word-spacing:11.080533pt;}
.wsf2{word-spacing:11.185067pt;}
.ws9e{word-spacing:11.237333pt;}
.ws72{word-spacing:11.341867pt;}
.ws64{word-spacing:11.394133pt;}
.ws98{word-spacing:11.446400pt;}
.ws50{word-spacing:11.707733pt;}
.wsee{word-spacing:11.760000pt;}
.ws8d{word-spacing:11.916800pt;}
.ws33{word-spacing:12.125867pt;}
.ws5d{word-spacing:12.178133pt;}
.wsbb{word-spacing:12.230400pt;}
.wsed{word-spacing:12.282667pt;}
.wsf1{word-spacing:12.387200pt;}
.ws34{word-spacing:12.596267pt;}
.wse7{word-spacing:12.648533pt;}
.wsa4{word-spacing:12.753067pt;}
.ws21{word-spacing:12.857600pt;}
.wsa0{word-spacing:12.962133pt;}
.ws81{word-spacing:13.118933pt;}
.ws30{word-spacing:13.432533pt;}
.ws9d{word-spacing:13.537067pt;}
.ws22{word-spacing:13.798400pt;}
.wsbc{word-spacing:13.902933pt;}
.ws7a{word-spacing:14.007467pt;}
.ws28{word-spacing:14.216533pt;}
.ws17{word-spacing:14.268800pt;}
.ws92{word-spacing:14.530133pt;}
.ws8e{word-spacing:14.896000pt;}
.ws3a{word-spacing:15.000533pt;}
.wscb{word-spacing:15.889067pt;}
.wsc6{word-spacing:15.941333pt;}
.ws1a{word-spacing:15.993600pt;}
.wsda{word-spacing:16.254933pt;}
.wsc9{word-spacing:16.934400pt;}
.wse0{word-spacing:17.091200pt;}
.wsa2{word-spacing:17.979733pt;}
.ws85{word-spacing:18.711467pt;}
.ws6d{word-spacing:18.763733pt;}
.ws8f{word-spacing:19.286400pt;}
.ws4e{word-spacing:19.547733pt;}
.wsbd{word-spacing:20.070400pt;}
.ws7c{word-spacing:20.488533pt;}
.wsde{word-spacing:20.906667pt;}
.wscc{word-spacing:21.324800pt;}
.ws20{word-spacing:24.460800pt;}
.wsf0{word-spacing:25.401600pt;}
.ws69{word-spacing:28.851200pt;}
.ws86{word-spacing:30.157867pt;}
.ws57{word-spacing:30.680533pt;}
.wsd7{word-spacing:32.509867pt;}
.ws6a{word-spacing:32.614400pt;}
.wsac{word-spacing:50.777286pt;}
.wsad{word-spacing:76.052343pt;}
.wsaf{word-spacing:93.773278pt;}
.ws75{word-spacing:201.856000pt;}
.ws76{word-spacing:213.162667pt;}
.ws78{word-spacing:221.184000pt;}
.ws79{word-spacing:242.005333pt;}
.wsb8{word-spacing:306.094917pt;}
.wsc3{word-spacing:446.677318pt;}
.wsba{word-spacing:510.079984pt;}
.wsb9{word-spacing:530.901317pt;}
.wsc2{word-spacing:828.159993pt;}
.wsb7{word-spacing:996.650634pt;}
._23{margin-left:-120.979456pt;}
._24{margin-left:-106.609596pt;}
._f{margin-left:-38.363733pt;}
._16{margin-left:-23.902952pt;}
._17{margin-left:-17.829333pt;}
._20{margin-left:-14.837623pt;}
._13{margin-left:-12.962133pt;}
._4{margin-left:-11.136036pt;}
._38{margin-left:-9.713067pt;}
._10{margin-left:-7.892267pt;}
._15{margin-left:-6.547093pt;}
._7{margin-left:-5.013333pt;}
._19{margin-left:-4.010667pt;}
._6{margin-left:-3.093333pt;}
._a{margin-left:-2.181333pt;}
._3{margin-left:-1.280000pt;}
._0{width:1.262933pt;}
._2{width:2.304000pt;}
._1{width:3.584000pt;}
._39{width:4.756267pt;}
._c{width:5.697059pt;}
._b{width:6.594133pt;}
._d{width:7.636160pt;}
._e{width:9.190400pt;}
._14{width:10.787307pt;}
._18{width:12.095680pt;}
._8{width:13.013333pt;}
._9{width:15.146667pt;}
._12{width:17.352533pt;}
._4c{width:20.490667pt;}
._11{width:25.349333pt;}
._5{width:33.163713pt;}
._4b{width:40.010667pt;}
._1b{width:60.970658pt;}
._1a{width:71.082667pt;}
._22{width:84.515226pt;}
._1c{width:109.056000pt;}
._25{width:112.318434pt;}
._21{width:121.149850pt;}
._1e{width:156.928000pt;}
._43{width:199.957338pt;}
._3b{width:201.023965pt;}
._3a{width:203.750385pt;}
._1d{width:220.160000pt;}
._3e{width:221.439989pt;}
._48{width:228.735985pt;}
._40{width:250.410655pt;}
._46{width:272.767965pt;}
._28{width:285.695984pt;}
._27{width:306.517317pt;}
._32{width:327.338650pt;}
._41{width:340.095965pt;}
._35{width:349.610650pt;}
._45{width:353.194632pt;}
._44{width:359.466655pt;}
._42{width:363.221322pt;}
._37{width:370.431984pt;}
._47{width:395.477322pt;}
._3c{width:409.130655pt;}
._1f{width:418.688000pt;}
._34{width:419.691697pt;}
._3d{width:435.199985pt;}
._36{width:440.282630pt;}
._3f{width:456.021318pt;}
._49{width:508.863987pt;}
._30{width:519.423984pt;}
._26{width:547.455964pt;}
._33{width:595.114630pt;}
._31{width:611.157297pt;}
._29{width:623.462364pt;}
._4a{width:979.473003pt;}
._2f{width:1109.717297pt;}
._2d{width:1122.223964pt;}
._2c{width:1125.935964pt;}
._2b{width:1134.938630pt;}
._2a{width:1143.941297pt;}
._2e{width:1145.279964pt;}
.fsf{font-size:26.133333pt;}
.fsa{font-size:28.000000pt;}
.fs10{font-size:29.866667pt;}
.fsd{font-size:36.586667pt;}
.fs7{font-size:37.333333pt;}
.fsb{font-size:40.000000pt;}
.fs4{font-size:41.066666pt;}
.fs0{font-size:42.666667pt;}
.fse{font-size:48.000000pt;}
.fsc{font-size:49.066666pt;}
.fs8{font-size:52.266667pt;}
.fs6{font-size:53.333333pt;}
.fs5{font-size:54.933333pt;}
.fs11{font-size:56.797867pt;}
.fs3{font-size:58.666667pt;}
.fs9{font-size:66.292800pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y10d{bottom:4.437866pt;}
.y3b{bottom:4.492268pt;}
.y3a{bottom:24.380290pt;}
.y1f{bottom:67.374933pt;}
.y1e{bottom:78.042933pt;}
.y1d{bottom:88.710933pt;}
.y1a7{bottom:89.477336pt;}
.ya7{bottom:89.750001pt;}
.ydb{bottom:89.756401pt;}
.yf6{bottom:93.373728pt;}
.y16c{bottom:93.406535pt;}
.y77{bottom:94.780529pt;}
.y10e{bottom:96.617737pt;}
.y113{bottom:96.973863pt;}
.y118{bottom:96.999993pt;}
.y1c{bottom:99.378933pt;}
.y1e6{bottom:100.304687pt;}
.y1a6{bottom:101.477336pt;}
.ya6{bottom:105.743601pt;}
.yda{bottom:105.750001pt;}
.yf5{bottom:108.486664pt;}
.y16b{bottom:108.519338pt;}
.y1b{bottom:110.046933pt;}
.y10b{bottom:110.084005pt;}
.y76{bottom:110.774129pt;}
.y1e5{bottom:112.304687pt;}
.y112{bottom:112.967463pt;}
.y117{bottom:112.993593pt;}
.y1a5{bottom:113.477336pt;}
.y228{bottom:113.638021pt;}
.yf4{bottom:119.866130pt;}
.y16a{bottom:119.898936pt;}
.y1a{bottom:120.714933pt;}
.yd9{bottom:121.743601pt;}
.ya5{bottom:121.762791pt;}
.y1e4{bottom:124.304687pt;}
.y227{bottom:125.638021pt;}
.y75{bottom:126.774129pt;}
.y111{bottom:128.961063pt;}
.y116{bottom:128.987193pt;}
.y19{bottom:131.382933pt;}
.y1e3{bottom:136.304687pt;}
.y1a4{bottom:137.477336pt;}
.y226{bottom:137.638021pt;}
.ya4{bottom:137.756391pt;}
.yd8{bottom:137.762791pt;}
.yfc{bottom:139.721995pt;}
.y17d{bottom:139.888265pt;}
.y74{bottom:142.806129pt;}
.y110{bottom:144.954663pt;}
.y115{bottom:144.980793pt;}
.y103{bottom:147.464528pt;}
.y1e2{bottom:148.304687pt;}
.y225{bottom:149.638021pt;}
.ya3{bottom:153.749991pt;}
.yd7{bottom:153.756391pt;}
.yfb{bottom:155.922129pt;}
.y17c{bottom:156.088135pt;}
.y73{bottom:158.799729pt;}
.y1e1{bottom:160.304687pt;}
.y10f{bottom:160.948263pt;}
.y114{bottom:160.974393pt;}
.y224{bottom:161.638021pt;}
.y40{bottom:165.049459pt;}
.y1a3{bottom:169.477336pt;}
.yd6{bottom:169.749991pt;}
.y102{bottom:170.104533pt;}
.yfa{bottom:172.051339pt;}
.y17b{bottom:172.221598pt;}
.y1e0{bottom:172.304687pt;}
.y223{bottom:173.638021pt;}
.y37{bottom:174.266930pt;}
.y72{bottom:174.793329pt;}
.y3f{bottom:177.049459pt;}
.y1a2{bottom:181.477336pt;}
.y1df{bottom:184.304687pt;}
.y222{bottom:185.638021pt;}
.yd5{bottom:185.743591pt;}
.ya2{bottom:186.416658pt;}
.yf9{bottom:188.190005pt;}
.y17a{bottom:188.354797pt;}
.y36{bottom:190.260530pt;}
.y71{bottom:190.786929pt;}
.y101{bottom:191.988525pt;}
.y3e{bottom:193.049459pt;}
.y1a1{bottom:193.477336pt;}
.y1de{bottom:196.304687pt;}
.y221{bottom:197.638021pt;}
.yd4{bottom:201.749991pt;}
.ya1{bottom:202.410258pt;}
.y104{bottom:202.885047pt;}
.y11e{bottom:203.088542pt;}
.yf8{bottom:204.318005pt;}
.y179{bottom:204.488139pt;}
.y35{bottom:206.254130pt;}
.y70{bottom:206.780529pt;}
.y3d{bottom:208.049459pt;}
.y1dd{bottom:208.304687pt;}
.y220{bottom:209.638021pt;}
.y1a0{bottom:217.477336pt;}
.yd3{bottom:217.743591pt;}
.y11d{bottom:218.201333pt;}
.ya0{bottom:218.461316pt;}
.y1dc{bottom:220.304687pt;}
.y178{bottom:220.621602pt;}
.y21f{bottom:221.638021pt;}
.y34{bottom:222.305350pt;}
.y6f{bottom:222.774129pt;}
.yf7{bottom:228.222005pt;}
.y19f{bottom:229.477336pt;}
.y3c{bottom:231.049459pt;}
.y1db{bottom:232.304687pt;}
.y105{bottom:233.229307pt;}
.y21e{bottom:233.638021pt;}
.yd2{bottom:233.756269pt;}
.y9f{bottom:234.454916pt;}
.y12f{bottom:234.457336pt;}
.y177{bottom:236.754801pt;}
.y33{bottom:238.298950pt;}
.y6e{bottom:238.774129pt;}
.y19e{bottom:241.477336pt;}
.y1da{bottom:244.304687pt;}
.y21d{bottom:245.638021pt;}
.yd1{bottom:249.749869pt;}
.yf3{bottom:249.833333pt;}
.y9e{bottom:250.448516pt;}
.y12e{bottom:250.657328pt;}
.y176{bottom:252.888265pt;}
.y32{bottom:254.292550pt;}
.y6d{bottom:254.793329pt;}
.y1d9{bottom:256.304687pt;}
.y21c{bottom:257.638021pt;}
.y106{bottom:263.559368pt;}
.y19d{bottom:265.477336pt;}
.yd0{bottom:265.743469pt;}
.y9d{bottom:266.442116pt;}
.y12d{bottom:266.790670pt;}
.y1d8{bottom:268.304687pt;}
.y175{bottom:269.021464pt;}
.y28{bottom:269.577061pt;}
.y21b{bottom:269.638021pt;}
.y31{bottom:270.286150pt;}
.y6c{bottom:270.786929pt;}
.y19c{bottom:277.477336pt;}
.y1d7{bottom:280.304687pt;}
.y21a{bottom:281.638021pt;}
.ycf{bottom:281.743469pt;}
.y9c{bottom:282.435716pt;}
.y12c{bottom:282.923991pt;}
.y174{bottom:285.154805pt;}
.y27{bottom:285.570661pt;}
.y30{bottom:286.279750pt;}
.y6b{bottom:286.780529pt;}
.y19b{bottom:289.477336pt;}
.y1d6{bottom:292.304687pt;}
.y219{bottom:293.638021pt;}
.y107{bottom:293.903628pt;}
.y9b{bottom:298.429316pt;}
.y12b{bottom:299.062674pt;}
.y173{bottom:301.304151pt;}
.y19a{bottom:301.477336pt;}
.y26{bottom:301.564261pt;}
.y2f{bottom:302.273350pt;}
.y6a{bottom:302.774129pt;}
.yf2{bottom:302.812529pt;}
.y1d5{bottom:304.304687pt;}
.y10c{bottom:305.121195pt;}
.y218{bottom:305.638021pt;}
.y25b{bottom:309.638000pt;}
.y199{bottom:313.477336pt;}
.y9a{bottom:314.422916pt;}
.y12a{bottom:315.190674pt;}
.yce{bottom:316.258809pt;}
.y1d4{bottom:316.304688pt;}
.y172{bottom:317.432151pt;}
.y25{bottom:317.557861pt;}
.y217{bottom:317.638021pt;}
.y2e{bottom:318.266950pt;}
.y69{bottom:318.774129pt;}
.yf1{bottom:318.806129pt;}
.y25a{bottom:321.638000pt;}
.y108{bottom:324.233689pt;}
.y198{bottom:325.477336pt;}
.y1d3{bottom:328.304688pt;}
.y216{bottom:329.638021pt;}
.y99{bottom:330.416516pt;}
.y129{bottom:331.345340pt;}
.ycd{bottom:332.271589pt;}
.y171{bottom:333.560151pt;}
.y24{bottom:333.570661pt;}
.y259{bottom:333.638000pt;}
.y2d{bottom:334.260550pt;}
.yf0{bottom:334.799729pt;}
.y68{bottom:334.812529pt;}
.y197{bottom:337.477336pt;}
.y1d2{bottom:340.304688pt;}
.y215{bottom:341.638021pt;}
.y98{bottom:346.410116pt;}
.y128{bottom:347.473340pt;}
.ycc{bottom:348.265189pt;}
.y196{bottom:349.477336pt;}
.y23{bottom:349.564261pt;}
.y170{bottom:349.688151pt;}
.y2c{bottom:350.254150pt;}
.yef{bottom:350.793329pt;}
.y67{bottom:350.806129pt;}
.y1d1{bottom:352.304688pt;}
.y214{bottom:353.638021pt;}
.y109{bottom:354.563750pt;}
.y97{bottom:362.410116pt;}
.y127{bottom:363.601340pt;}
.ycb{bottom:364.258789pt;}
.y1d0{bottom:364.304688pt;}
.y22{bottom:365.557861pt;}
.y258{bottom:365.638006pt;}
.y213{bottom:365.638021pt;}
.y16f{bottom:365.822924pt;}
.y2b{bottom:366.283461pt;}
.yee{bottom:366.786929pt;}
.y66{bottom:366.799729pt;}
.y195{bottom:373.477336pt;}
.y1cf{bottom:376.304688pt;}
.y257{bottom:377.638006pt;}
.y212{bottom:377.638021pt;}
.y126{bottom:379.729340pt;}
.yca{bottom:380.290789pt;}
.y21{bottom:381.557861pt;}
.y2a{bottom:382.277061pt;}
.yed{bottom:382.780529pt;}
.y65{bottom:382.793329pt;}
.y10a{bottom:384.908010pt;}
.y194{bottom:385.477336pt;}
.y1ce{bottom:388.304688pt;}
.y256{bottom:389.638006pt;}
.y211{bottom:389.638021pt;}
.y16e{bottom:389.726924pt;}
.y125{bottom:395.857340pt;}
.yc9{bottom:396.284389pt;}
.y20{bottom:397.557861pt;}
.y29{bottom:398.270661pt;}
.yec{bottom:398.774129pt;}
.y64{bottom:398.786929pt;}
.y1cd{bottom:400.304688pt;}
.y96{bottom:401.262283pt;}
.y255{bottom:401.638006pt;}
.y210{bottom:401.638021pt;}
.y193{bottom:409.490136pt;}
.y16d{bottom:410.921590pt;}
.y124{bottom:411.995983pt;}
.yc8{bottom:412.277989pt;}
.y1cc{bottom:412.304688pt;}
.y254{bottom:413.638006pt;}
.y20f{bottom:413.638021pt;}
.y63{bottom:414.780529pt;}
.y95{bottom:417.255883pt;}
.y1cb{bottom:424.304688pt;}
.y192{bottom:425.483736pt;}
.y253{bottom:425.638006pt;}
.y20e{bottom:425.638021pt;}
.y123{bottom:428.123983pt;}
.yc7{bottom:428.271589pt;}
.y62{bottom:430.774129pt;}
.y169{bottom:432.532796pt;}
.y94{bottom:433.249483pt;}
.y1ca{bottom:436.304688pt;}
.y252{bottom:437.638006pt;}
.y20d{bottom:437.638021pt;}
.y191{bottom:441.477336pt;}
.y18{bottom:444.191162pt;}
.y122{bottom:444.257324pt;}
.yc6{bottom:444.265189pt;}
.y61{bottom:446.818929pt;}
.yeb{bottom:446.850929pt;}
.y1c9{bottom:448.304688pt;}
.y93{bottom:449.243083pt;}
.y251{bottom:449.638006pt;}
.y20c{bottom:449.638021pt;}
.y190{bottom:457.490136pt;}
.yc5{bottom:460.258789pt;}
.y1c8{bottom:460.304688pt;}
.y121{bottom:460.392015pt;}
.y250{bottom:461.638006pt;}
.y20b{bottom:461.638021pt;}
.y60{bottom:462.812529pt;}
.yea{bottom:462.844529pt;}
.y17{bottom:464.191162pt;}
.y92{bottom:465.236683pt;}
.y1c7{bottom:472.304688pt;}
.y18f{bottom:473.483736pt;}
.y24f{bottom:473.638006pt;}
.y20a{bottom:473.638021pt;}
.yc4{bottom:476.258789pt;}
.y5f{bottom:478.806129pt;}
.ye9{bottom:478.838129pt;}
.y14b{bottom:479.792649pt;}
.y168{bottom:479.799049pt;}
.y16{bottom:480.191162pt;}
.y91{bottom:481.230283pt;}
.y120{bottom:484.296015pt;}
.y1c6{bottom:484.304688pt;}
.y24e{bottom:485.638006pt;}
.y209{bottom:485.638021pt;}
.y18e{bottom:489.477336pt;}
.yc3{bottom:492.322789pt;}
.y5e{bottom:494.799729pt;}
.ye8{bottom:494.831729pt;}
.y14a{bottom:495.786249pt;}
.y167{bottom:495.792649pt;}
.y1c5{bottom:496.304688pt;}
.y90{bottom:497.223883pt;}
.y24d{bottom:497.638006pt;}
.y208{bottom:497.638021pt;}
.y100{bottom:498.261353pt;}
.y15{bottom:500.191162pt;}
.y18d{bottom:505.477336pt;}
.y11f{bottom:505.490682pt;}
.y1c4{bottom:508.304688pt;}
.yc2{bottom:508.316389pt;}
.y24c{bottom:509.638006pt;}
.y207{bottom:509.638021pt;}
.y5d{bottom:510.793329pt;}
.ye7{bottom:510.825329pt;}
.yff{bottom:511.594686pt;}
.y149{bottom:511.779849pt;}
.y166{bottom:511.786249pt;}
.y8f{bottom:513.217483pt;}
.y14{bottom:516.191162pt;}
.y1c3{bottom:520.304688pt;}
.y24b{bottom:521.638006pt;}
.y206{bottom:521.638021pt;}
.yc1{bottom:524.309989pt;}
.y5c{bottom:526.786929pt;}
.ye6{bottom:526.818929pt;}
.y11c{bottom:527.001994pt;}
.y148{bottom:527.773449pt;}
.y165{bottom:527.779849pt;}
.y8e{bottom:529.211083pt;}
.y13{bottom:532.191162pt;}
.y1c2{bottom:532.304688pt;}
.y24a{bottom:533.638006pt;}
.y205{bottom:533.638021pt;}
.yc0{bottom:540.303589pt;}
.y5b{bottom:542.780529pt;}
.ye5{bottom:542.812529pt;}
.y147{bottom:543.767049pt;}
.y164{bottom:543.773449pt;}
.y1c1{bottom:544.304688pt;}
.y8d{bottom:545.204683pt;}
.y249{bottom:545.638006pt;}
.y204{bottom:545.638021pt;}
.y12{bottom:548.191162pt;}
.ybf{bottom:556.297189pt;}
.y1c0{bottom:556.304688pt;}
.y248{bottom:557.638006pt;}
.y203{bottom:557.638021pt;}
.y5a{bottom:558.774129pt;}
.ye4{bottom:558.806129pt;}
.y163{bottom:559.767049pt;}
.y18c{bottom:559.786249pt;}
.y146{bottom:559.869490pt;}
.y8c{bottom:561.198283pt;}
.y11{bottom:564.191162pt;}
.y1bf{bottom:568.304688pt;}
.y247{bottom:569.638006pt;}
.y202{bottom:569.638021pt;}
.ybe{bottom:572.290789pt;}
.y11b{bottom:573.504679pt;}
.y59{bottom:574.793329pt;}
.ye3{bottom:574.799729pt;}
.y18b{bottom:575.779849pt;}
.y162{bottom:575.831090pt;}
.y145{bottom:575.863090pt;}
.y8b{bottom:577.198283pt;}
.y1be{bottom:580.304688pt;}
.y246{bottom:581.638006pt;}
.y201{bottom:581.638021pt;}
.y10{bottom:584.191162pt;}
.y11a{bottom:586.838013pt;}
.ybd{bottom:588.284389pt;}
.y58{bottom:590.786929pt;}
.ye2{bottom:590.793329pt;}
.y18a{bottom:591.773449pt;}
.y161{bottom:591.824690pt;}
.y144{bottom:591.856690pt;}
.y1bd{bottom:592.304688pt;}
.y245{bottom:593.638006pt;}
.y200{bottom:593.638021pt;}
.y119{bottom:600.171346pt;}
.yf{bottom:600.191162pt;}
.ybc{bottom:604.277989pt;}
.y1bc{bottom:604.304688pt;}
.y244{bottom:605.638006pt;}
.y1ff{bottom:605.638021pt;}
.y57{bottom:606.780529pt;}
.ye1{bottom:606.786929pt;}
.y189{bottom:607.767049pt;}
.y160{bottom:607.818290pt;}
.y143{bottom:607.850290pt;}
.y8a{bottom:616.011725pt;}
.ye{bottom:616.191162pt;}
.y1bb{bottom:616.304688pt;}
.y243{bottom:617.638006pt;}
.y1fe{bottom:617.638021pt;}
.ybb{bottom:620.271589pt;}
.y56{bottom:622.774129pt;}
.ye0{bottom:622.780529pt;}
.y188{bottom:623.779849pt;}
.y15f{bottom:623.811890pt;}
.y142{bottom:623.843890pt;}
.y1ba{bottom:628.304688pt;}
.y242{bottom:629.638006pt;}
.y1fd{bottom:629.638021pt;}
.y89{bottom:632.005325pt;}
.yd{bottom:632.191162pt;}
.yba{bottom:636.265189pt;}
.ydf{bottom:638.774129pt;}
.y55{bottom:638.780529pt;}
.y187{bottom:639.773449pt;}
.y15e{bottom:639.805490pt;}
.y141{bottom:639.837490pt;}
.y1b9{bottom:640.304688pt;}
.y241{bottom:641.638006pt;}
.y1fc{bottom:641.638021pt;}
.y88{bottom:647.998925pt;}
.yc{bottom:652.191162pt;}
.yb9{bottom:652.258789pt;}
.y1b8{bottom:652.304688pt;}
.y240{bottom:653.638006pt;}
.y1fb{bottom:653.638021pt;}
.y54{bottom:654.774129pt;}
.yde{bottom:654.793370pt;}
.y186{bottom:655.767049pt;}
.y15d{bottom:655.799090pt;}
.y140{bottom:655.831090pt;}
.y87{bottom:663.992525pt;}
.y1b7{bottom:664.304688pt;}
.y23f{bottom:665.638006pt;}
.y1fa{bottom:665.638021pt;}
.yb{bottom:668.191162pt;}
.yb8{bottom:668.265189pt;}
.y53{bottom:670.786970pt;}
.y15c{bottom:671.792690pt;}
.y185{bottom:671.811890pt;}
.y13f{bottom:671.824690pt;}
.y1b6{bottom:676.304688pt;}
.y23e{bottom:677.638006pt;}
.y1f9{bottom:677.638021pt;}
.y86{bottom:679.986125pt;}
.ya{bottom:684.191162pt;}
.yb7{bottom:684.258789pt;}
.y52{bottom:686.780570pt;}
.y15b{bottom:687.786290pt;}
.y184{bottom:687.805490pt;}
.y13e{bottom:687.818290pt;}
.y1b5{bottom:688.304688pt;}
.y23d{bottom:689.638006pt;}
.y1f8{bottom:689.638021pt;}
.y85{bottom:695.992565pt;}
.yb6{bottom:700.284389pt;}
.y23c{bottom:701.638006pt;}
.y1f7{bottom:701.638021pt;}
.y51{bottom:702.774170pt;}
.y15a{bottom:703.779890pt;}
.y183{bottom:703.799090pt;}
.y13d{bottom:703.811890pt;}
.y9{bottom:704.191162pt;}
.y84{bottom:711.986165pt;}
.y23b{bottom:713.638006pt;}
.y1f6{bottom:713.638021pt;}
.yb5{bottom:716.277989pt;}
.y50{bottom:718.799770pt;}
.y159{bottom:719.773490pt;}
.y182{bottom:719.792690pt;}
.y13c{bottom:719.805490pt;}
.y23a{bottom:725.638006pt;}
.y1f5{bottom:725.638021pt;}
.y83{bottom:727.986165pt;}
.yb4{bottom:732.271589pt;}
.y4f{bottom:734.793370pt;}
.y158{bottom:735.767090pt;}
.y181{bottom:735.786290pt;}
.y13b{bottom:735.799090pt;}
.y239{bottom:737.638006pt;}
.y1f4{bottom:737.638021pt;}
.y82{bottom:743.986165pt;}
.yb3{bottom:748.265189pt;}
.y238{bottom:749.638006pt;}
.y1b4{bottom:749.638021pt;}
.y4e{bottom:750.786970pt;}
.yfe{bottom:751.638021pt;}
.y157{bottom:751.779890pt;}
.y13a{bottom:751.792690pt;}
.y237{bottom:761.638006pt;}
.y1f3{bottom:761.638021pt;}
.yb2{bottom:764.258789pt;}
.yfd{bottom:764.971354pt;}
.y4d{bottom:766.780570pt;}
.y156{bottom:767.773490pt;}
.y139{bottom:767.786290pt;}
.y8{bottom:768.491211pt;}
.y236{bottom:773.638006pt;}
.y1b3{bottom:773.638021pt;}
.yb1{bottom:780.258789pt;}
.y4c{bottom:782.774170pt;}
.y81{bottom:782.831996pt;}
.y155{bottom:783.767090pt;}
.y138{bottom:783.779890pt;}
.y235{bottom:785.638006pt;}
.y1b2{bottom:785.638021pt;}
.y234{bottom:797.638006pt;}
.y1f2{bottom:797.638021pt;}
.y4b{bottom:798.786970pt;}
.y80{bottom:798.825596pt;}
.y137{bottom:799.773490pt;}
.y154{bottom:799.786290pt;}
.y7{bottom:800.513358pt;}
.y1b1{bottom:801.638021pt;}
.y1b0{bottom:809.637324pt;}
.y233{bottom:809.638006pt;}
.y1f1{bottom:809.638021pt;}
.y4a{bottom:814.780570pt;}
.yb0{bottom:814.793370pt;}
.y7f{bottom:814.819196pt;}
.y136{bottom:815.767090pt;}
.y153{bottom:815.779890pt;}
.y232{bottom:821.638006pt;}
.y1f0{bottom:821.638021pt;}
.y49{bottom:830.774170pt;}
.yaf{bottom:830.786970pt;}
.y7e{bottom:830.812796pt;}
.y135{bottom:831.767090pt;}
.y152{bottom:831.773490pt;}
.y180{bottom:831.805490pt;}
.y1af{bottom:833.637324pt;}
.y231{bottom:833.638006pt;}
.y1ef{bottom:833.638021pt;}
.y6{bottom:835.169358pt;}
.y1ae{bottom:845.637324pt;}
.y230{bottom:845.638006pt;}
.y1ee{bottom:845.638021pt;}
.yae{bottom:846.780570pt;}
.y48{bottom:846.793370pt;}
.y7d{bottom:846.806396pt;}
.y151{bottom:847.767090pt;}
.y17f{bottom:847.799090pt;}
.y1ad{bottom:857.637324pt;}
.y22f{bottom:857.638006pt;}
.y1ed{bottom:857.638021pt;}
.yad{bottom:862.774170pt;}
.y47{bottom:862.786970pt;}
.y7c{bottom:862.799996pt;}
.y134{bottom:863.767090pt;}
.y17e{bottom:863.792690pt;}
.y150{bottom:863.821973pt;}
.y1ac{bottom:869.637324pt;}
.y22e{bottom:869.638006pt;}
.y1ec{bottom:869.638021pt;}
.y5{bottom:869.825358pt;}
.yac{bottom:878.774170pt;}
.y46{bottom:878.780570pt;}
.y7b{bottom:878.793596pt;}
.y133{bottom:879.786290pt;}
.y14f{bottom:879.815573pt;}
.y1ab{bottom:881.637324pt;}
.y22d{bottom:881.638006pt;}
.y1eb{bottom:881.638021pt;}
.y1aa{bottom:893.637324pt;}
.y22c{bottom:893.638006pt;}
.y1ea{bottom:893.638021pt;}
.y45{bottom:894.774170pt;}
.yab{bottom:894.786970pt;}
.y7a{bottom:894.787196pt;}
.y132{bottom:895.779890pt;}
.y14e{bottom:895.809173pt;}
.y22b{bottom:905.638006pt;}
.y1e9{bottom:905.638021pt;}
.y44{bottom:910.780570pt;}
.y79{bottom:910.780796pt;}
.ydd{bottom:910.787317pt;}
.y131{bottom:911.773490pt;}
.y14d{bottom:911.802773pt;}
.y1a9{bottom:917.637324pt;}
.y22a{bottom:917.638006pt;}
.y1e8{bottom:917.638021pt;}
.y4{bottom:918.544515pt;}
.y38{bottom:920.666829pt;}
.y43{bottom:926.774170pt;}
.y78{bottom:926.774396pt;}
.ydc{bottom:926.780917pt;}
.y130{bottom:927.767090pt;}
.y14c{bottom:927.796373pt;}
.y1a8{bottom:929.637324pt;}
.y229{bottom:929.638006pt;}
.y1e7{bottom:929.638021pt;}
.y39{bottom:972.798665pt;}
.y3{bottom:975.375182pt;}
.y2{bottom:988.708515pt;}
.ya8{bottom:1001.355225pt;}
.y41{bottom:1001.355306pt;}
.yaa{bottom:1001.561768pt;}
.y1{bottom:1001.711182pt;}
.ya9{bottom:1002.044515pt;}
.y42{bottom:1002.048639pt;}
.h10{height:24.724000pt;}
.h16{height:24.878933pt;}
.hc{height:32.965333pt;}
.h11{height:35.320000pt;}
.h25{height:35.541333pt;}
.h15{height:35.578667pt;}
.hb{height:36.922667pt;}
.h18{height:37.674667pt;}
.h29{height:38.080000pt;}
.he{height:38.581333pt;}
.h27{height:38.920000pt;}
.h1d{height:39.360922pt;}
.h4{height:40.618667pt;}
.h3{height:40.661333pt;}
.h28{height:40.724000pt;}
.h17{height:41.514667pt;}
.h2{height:41.984000pt;}
.h1c{height:42.197333pt;}
.h22{height:43.353535pt;}
.h26{height:43.375389pt;}
.h23{height:43.417551pt;}
.h21{height:43.417633pt;}
.h1f{height:43.433600pt;}
.h1a{height:43.438429pt;}
.h24{height:43.438917pt;}
.h1b{height:43.438953pt;}
.h20{height:43.438998pt;}
.h19{height:43.454913pt;}
.ha{height:47.093333pt;}
.h14{height:47.472000pt;}
.h12{height:47.741866pt;}
.h13{height:48.555733pt;}
.hd{height:49.653333pt;}
.hf{height:50.713992pt;}
.h9{height:51.893333pt;}
.h8{height:54.329067pt;}
.h7{height:59.728337pt;}
.h5{height:68.570667pt;}
.h6{height:121.856000pt;}
.h1e{height:316.708008pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w2{width:176.470662pt;}
.w3{width:642.520020pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:43.065104pt;}
.x1{left:75.496002pt;}
.x2{left:82.430532pt;}
.x3{left:84.162800pt;}
.xb{left:86.252935pt;}
.x19{left:95.590535pt;}
.x13{left:138.306672pt;}
.x10{left:158.570536pt;}
.x12{left:214.570304pt;}
.x11{left:221.769434pt;}
.x14{left:232.150931pt;}
.x4{left:240.726664pt;}
.xf{left:250.093994pt;}
.x17{left:320.268392pt;}
.x15{left:397.686523pt;}
.x5{left:406.304795pt;}
.xc{left:415.628794pt;}
.x6{left:416.961594pt;}
.x18{left:426.299194pt;}
.xd{left:432.968261pt;}
.x16{left:445.919067pt;}
.x8{left:541.514648pt;}
.xe{left:547.136800pt;}
.x7{left:617.715454pt;}
.xa{left:669.671183pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  